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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #e67e22;
    --dark-text: #2c3e50;
    --light-text: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--dark-text);
    background: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-text);
    color: white;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: var(--secondary-color);
    color: white;
}

.btn-cookie-accept:hover {
    background: #d35400;
}

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.navigation {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    gap: 3rem;
    align-items: center;
}

.hero-content-left {
    flex: 1;
}

.hero-content-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-content-left p {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.hero-visual-right {
    flex: 1;
}

.hero-visual-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-primary:hover {
    background: #d35400;
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.why-now-section,
.approach-section,
.impact-section,
.approach-detail,
.origin-story,
.team-philosophy {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.approach-section,
.team-philosophy {
    background: var(--bg-white);
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    color: var(--dark-text);
    line-height: 1.8;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.link-inline {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #d35400;
}

.testimonial-highlight {
    background: var(--primary-color);
    padding: 4rem 2rem;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-card blockquote {
    font-size: 1.5rem;
    line-height: 1.7;
    color: white;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card cite {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-style: normal;
}

.programs-preview {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-header-center p {
    font-size: 1.2rem;
    color: var(--light-text);
}

.programs-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.program-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.program-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.age-range {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.program-card p {
    color: var(--dark-text);
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: auto;
}

.values-section {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.values-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.values-wrapper h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values-split {
    display: flex;
    gap: 3rem;
}

.value-block {
    flex: 1;
}

.value-block h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.value-block p {
    font-size: 1.1rem;
    color: var(--light-text);
    line-height: 1.8;
}

.cta-section-mid {
    background: var(--secondary-color);
    padding: 4rem 2rem;
}

.cta-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-centered h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
}

.cta-content-centered p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
}

.cta-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: white;
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.cta-large:hover {
    background: var(--bg-light);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.form-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.form-container-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--dark-text);
    line-height: 1.8;
}

.form-wrapper {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.final-trust {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.trust-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.trust-content p {
    font-size: 1.15rem;
    color: var(--dark-text);
    line-height: 1.8;
}

.footer {
    background: var(--dark-text);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: #d35400;
    transform: scale(1.05);
}

.page-hero {
    background: var(--bg-light);
    padding: 3rem 2rem;
}

.hero-split-about {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hero-left {
    flex: 1;
}

.hero-left h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-left p {
    font-size: 1.25rem;
    color: var(--light-text);
}

.hero-right {
    flex: 1;
}

.hero-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.mission-section {
    padding: 4rem 2rem;
    background: var(--primary-color);
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.mission-statement {
    font-size: 1.4rem;
    line-height: 1.8;
    color: white;
}

.values-detail {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.values-detail h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    color: var(--dark-text);
    line-height: 1.7;
}

.impact-numbers {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.stats-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-wrapper h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark-text);
}

.community-commitment {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.commitment-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.commitment-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.commitment-content p {
    font-size: 1.15rem;
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.cta-about {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.services-hero {
    background: var(--bg-light);
    padding: 3rem 2rem;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-hero-content p {
    font-size: 1.25rem;
    color: var(--light-text);
}

.service-detail {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.service-detail.alternate {
    background: var(--bg-light);
}

.service-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.service-split.reverse {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1;
}

.service-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--secondary-color);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-info h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--dark-text);
}

.service-info ul {
    margin-bottom: 1.5rem;
}

.service-info li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-info li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.duration {
    font-style: italic;
    color: var(--light-text);
    margin: 1.5rem 0;
}

.btn-enroll {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-enroll:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: sticky;
    top: 100px;
}

.program-features {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
}

.features-content h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.feature-box {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-box p {
    color: var(--dark-text);
    line-height: 1.7;
}

.enrollment-cta {
    padding: 4rem 2rem;
    background: var(--primary-color);
}

.enrollment-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.enrollment-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.enrollment-box p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
}

.contact-hero {
    background: var(--bg-light);
    padding: 3rem 2rem;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-hero-content p {
    font-size: 1.25rem;
    color: var(--light-text);
}

.contact-main {
    padding: 4rem 2rem;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info-side {
    flex: 1;
}

.contact-info-side h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
}

.info-block p {
    color: var(--dark-text);
    line-height: 1.7;
}

.info-block a {
    color: var(--secondary-color);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

.info-note {
    font-size: 0.95rem;
    color: var(--light-text);
    margin-top: 0.5rem;
}

.contact-visual-side {
    flex: 1;
}

.contact-visual-side img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.location-note {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.location-note p {
    margin-bottom: 0.75rem;
}

.faq-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-item p {
    color: var(--dark-text);
    line-height: 1.7;
}

.enrollment-reminder {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.reminder-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

.reminder-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.reminder-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
}

.thanks-hero {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.thanks-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--success-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--dark-text);
    margin-bottom: 3rem;
}

.confirmation-box {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
    text-align: left;
}

.confirmation-box h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.step-text p {
    color: var(--dark-text);
    line-height: 1.7;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--dark-text);
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.preparation-tips {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.tips-container {
    max-width: 1200px;
    margin: 0 auto;
}

.tips-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.tip-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

.tip-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.tip-card p {
    color: var(--dark-text);
    line-height: 1.7;
}

.support-info {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.support-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.support-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.support-box p {
    font-size: 1.1rem;
    color: var(--dark-text);
}

.support-box a {
    color: var(--secondary-color);
    text-decoration: none;
}

.support-box a:hover {
    text-decoration: underline;
}

.legal-hero {
    background: var(--bg-light);
    padding: 3rem 2rem;
    text-align: center;
}

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.update-date {
    font-size: 1rem;
    color: var(--light-text);
}

.legal-content {
    padding: 4rem 2rem;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
    color: var(--primary-color);
}

.legal-container h2:first-child {
    margin-top: 0;
}

.legal-container h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--dark-text);
}

.legal-container p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--dark-text);
}

.legal-container ul {
    margin: 1.25rem 0;
    padding-left: 2rem;
}

.legal-container li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.legal-container a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 2rem;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .hero-split,
    .split-container,
    .hero-split-about,
    .form-container-split,
    .contact-split,
    .service-split {
        flex-direction: column;
    }

    .split-container.reverse,
    .service-split.reverse {
        flex-direction: column;
    }

    .hero-content-left h1,
    .hero-left h1,
    .services-hero-content h1,
    .contact-hero-content h1,
    .legal-header h1 {
        font-size: 2rem;
    }

    .section-header-center h2,
    .stats-wrapper h2,
    .features-content h2,
    .faq-container h2,
    .tips-container h2 {
        font-size: 1.75rem;
    }

    .values-split {
        flex-direction: column;
    }

    .program-card,
    .value-card,
    .feature-box,
    .faq-item,
    .tip-card {
        flex: 1 1 100%;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
}
