* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  position: relative;
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-padding-top: 0px;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* === Color Palette === */
:root {
  --white: rgb(255, 255, 255);
  --off-white: rgb(254, 254, 254);
  --light-gray: rgb(248, 248, 253);
  --black: rgb(33, 33, 33);
  --primary-teal: #00A490;
  --primary-teal-dark: #00917f;
  --primary-teal-light: #66d4c7;
  --secondary-text: #757575;
  --tertiary-text: #9E9E9E;
  --placeholder-gray: #8E90A3;
}

.hero {
  text-align: center;
  padding: 100px 20px;
  background-color: var(--white);
}

.hero img {
  width: 150px;
  height: auto;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 2.5rem;
  margin: 0;
}

.hero p {
  font-size: 1.3rem;
  color: var(--secondary-text);
  margin: 10px 0 20px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-teal);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: var(--primary-teal-dark);
}

.btn-hero {
    margin-top: 2em;
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero img {
        width: 120px;
        margin-bottom: 20px;
    }
}

/* ==== BENEFITS SECTION ==== */
.benefits-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.benefits-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-label {
    color: #00A490;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.benefits-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-text);
    max-width: 700px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    border: 1px solid #e9ecef;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 28px;
    color: white;
}

.benefit-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.benefit-description {
    color: var(--secondary-text);
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .benefit-card {
        padding: 30px 20px;
    }
}

/* ==== FAQ ==== */
.faq-section {
  background-color: var(--white);
  padding: 6rem 1.5rem;
}

.faq-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

.faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.faq-left,
.faq-right {
  flex: 1 1 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .faq-left,
  .faq-right {
    flex: 1 1 calc(50% - 1rem);
  }
}

.faq-label {
  color: var(--primary-teal);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.faq-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--black);
  text-align: left;
}

.faq-item {
  border-top: 1px solid var(--light-gray);
  margin-bottom: 0;
  background-color: var(--white);
  transition: box-shadow 0.2s ease;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--light-gray);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.35rem 1.5rem;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
}

.faq-question:hover .question-text {
  color: var(--primary-teal-dark);
}

.faq-item.open .question-text {
  color: var(--primary-teal-dark);
}

.question-text {
  flex: 1 1 auto;
  margin-right: 0.75rem;
  font-size: 1.15rem;
  text-align: left;
  transition: color 0.2s ease;
}

.plus-minus-icon {
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  min-height: 1rem;
  position: relative;
  flex-shrink: 0;
}

.bar {
  position: absolute;
  background-color: var(--primary-teal);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.bar.horizontal {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2.5px;
  transform: translateY(-50%);
}

.bar.vertical {
  top: 0;
  left: 50%;
  width: 2.5px;
  height: 100%;
  transform: translateX(-50%) rotate(0deg);
}

.faq-item.open .bar.vertical {
  transform: translateX(-50%) rotate(90deg);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem;
  color: var(--secondary-text);
  font-size: 1.05rem;
  line-height: 1.6;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer a {
  color: var(--primary-teal-dark);
  text-decoration: none; 
  font-weight: 500;
}

footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 1.0rem;
  color: var(--secondary-text);
}

footer nav {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

footer nav a {
    color: var(--secondary-text);
    text-decoration: none;
    transition: color 0.3s;
}

footer nav a:hover {
  color: var(--primary-teal);
}

.sticky-footer {
  position: sticky;
  top: 100vh;
}

/* ==== LEGAL==== */
.notice {
  background: var(--light-gray);
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--primary-teal);
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  color: var(--black);
  font-size: 1.05rem;
  line-height: 1.75;
}

.legal-container h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.legal-container h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.legal-container h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-container h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-container p {
  margin-bottom: 1.2rem;
  color: var(--secondary-text);
}

.legal-container ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.legal-container ul li {
  margin-bottom: 0.75rem;
  color: var(--secondary-text);
  line-height: 1.6;
}

.legal-container a {
  color: var(--primary-teal-dark);
  text-decoration: none;
  font-weight: 500;
}

.legal-container a:hover {
  text-decoration: underline;
}

.disclaimer-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  color: var(--black);
  font-size: 1.1rem;
  line-height: 1.8;
}

.disclaimer-container h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
}

.disclaimer-container p {
  margin-bottom: 1.25rem;
  color: var(--secondary-text);
}

.disclaimer-container ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
}

.disclaimer-container ul li {
  margin-bottom: 0.75rem;
  color: var(--secondary-text);
  line-height: 1.6;
}

.disclaimer-container h2 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--black);
}

.disclaimer-container h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}


/* ==== SUPPORT ==== */
.support-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  text-align: center;
  color: var(--black);
}

.support-container h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.support-container p {
  font-size: 1.1rem;
  color: var(--secondary-text);
  margin-bottom: 1rem;
}


/* Very small screens (phones in portrait) */
@media (max-width: 480px) {
    .hero {
        padding: 40px 15px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin: 15px 0;
    }
    
    .benefits-section {
        padding: 60px 15px;
    }
    
    .benefits-title {
        font-size: 1.75rem;
    }
    
    .benefits-subtitle {
        font-size: 1.1rem;
    }
    
    .benefit-card {
        padding: 25px 15px;
    }
    
    .benefit-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .benefit-title {
        font-size: 1.2rem;
    }
    
    .faq-section {
        padding: 4rem 1rem;
    }
    
    .faq-question {
        padding: 1rem 1rem;
    }
    
    .question-text {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 1rem;
    }
    
    footer {
        padding: 30px 15px;
        font-size: 0.9rem;
    }
    
    footer nav {
        gap: 15px;
        flex-wrap: wrap;
    }
}

/* Landscape phones */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 40px 20px;
    }
    
    .benefits-section {
        padding: 50px 20px;
    }
}

