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

:root {
    --primary-color: #2c5f8d;
    --secondary-color: #e85d3c;
    --dark-color: #1a1a1a;
    --light-color: #f4f4f4;
    --text-color: #333;
    --border-color: #ddd;
    --success-color: #28a745;
    --background-alt: #fafafa;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.navbar {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-disclaimer {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background: #f0f0f0;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content-left {
    flex: 1;
    padding: 4rem;
    background-color: var(--background-alt);
}

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

.hero-content-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-image-right {
    flex: 1;
    position: relative;
    overflow: hidden;
    background-color: #ddd;
}

.hero-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 93, 60, 0.3);
}

.intro-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.intro-image {
    flex: 1;
    background-color: #ddd;
}

.intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.intro-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.problem-section {
    padding: 6rem 2rem;
    background-color: var(--primary-color);
    color: #fff;
}

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

.problem-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.problem-card p {
    font-size: 1rem;
    line-height: 1.7;
}

.solution-split {
    display: flex;
    padding: 5rem 0;
    background-color: var(--background-alt);
}

.solution-text {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.solution-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.solution-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.solution-image {
    flex: 1;
    background-color: #ddd;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: var(--background-alt);
    border-left: 4px solid var(--secondary-color);
    border-radius: 4px;
}

.testimonial-card p {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: #555;
}

.testimonial-author {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.programs-section {
    padding: 6rem 2rem;
    background-color: var(--background-alt);
}

.programs-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.program-card {
    flex: 1;
    min-width: 320px;
    padding: 2.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.program-card.featured {
    border: 3px solid var(--secondary-color);
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
}

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

.program-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.program-card ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.program-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.program-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.select-program-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-program-btn:hover {
    background-color: #234a6d;
    transform: scale(1.02);
}

.science-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.science-text {
    flex: 1;
}

.science-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.science-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.science-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.science-text a:hover {
    text-decoration: underline;
}

.science-image {
    flex: 1;
    background-color: #ddd;
}

.science-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.form-section {
    padding: 6rem 2rem;
    background-color: var(--background-alt);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--dark-color);
}

.form-container > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

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

.submit-btn {
    padding: 1rem 2rem;
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background-color: #d14d2c;
    transform: scale(1.02);
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fff3cd;
}

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

.disclaimer-content p {
    font-size: 0.9rem;
    color: #856404;
    line-height: 1.8;
}

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

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

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.footer-references h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-references ol {
    padding-left: 1.5rem;
}

.footer-references ol li {
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: #ccc;
}

.footer-references ol li a {
    color: #aaa;
    text-decoration: none;
}

.footer-references ol li a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    color: #fff;
    font-size: 0.95rem;
    flex: 1;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.2s;
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

.cookie-btn.accept {
    background-color: var(--success-color);
    color: #fff;
}

.cookie-btn.reject {
    background-color: #6c757d;
    color: #fff;
}

.page-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4a68 100%);
    color: #fff;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-story-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-image {
    flex: 1;
    background-color: #ddd;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-story {
    flex: 1;
}

.about-story h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-story p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.philosophy-section {
    padding: 5rem 2rem;
    background-color: var(--background-alt);
}

.philosophy-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.philosophy-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.philosophy-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.values-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.values-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.values-image {
    flex: 1;
    background-color: #ddd;
}

.values-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.approach-section {
    padding: 5rem 2rem;
    background-color: var(--background-alt);
}

.approach-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-step {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 80px;
}

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

.approach-step p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.difference-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

.difference-image {
    flex: 1;
    background-color: #ddd;
}

.difference-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.difference-text {
    flex: 1;
}

.difference-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.difference-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e4a68 100%);
    text-align: center;
    color: #fff;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.services-intro {
    padding: 4rem 2rem;
    background-color: #fff;
}

.services-intro-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.services-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.services-intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-item-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

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

.service-image {
    flex: 1;
    background-color: #ddd;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-details {
    flex: 1;
    position: relative;
}

.popular-badge {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 1rem;
}

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

.service-details p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

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

.service-details ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-details ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
}

.service-details ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-price-box {
    background-color: var(--background-alt);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
}

.select-service-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service-btn:hover {
    background-color: #234a6d;
    transform: scale(1.02);
}

.additional-services {
    padding: 5rem 2rem;
    background-color: var(--background-alt);
}

.additional-services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.additional-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
}

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

.additional-card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.additional-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.comparison-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.comparison-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.comparison-header,
.comparison-row {
    display: flex;
    align-items: center;
}

.comparison-header {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
    padding: 1rem;
}

.comparison-row {
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-feature,
.comparison-plan,
.comparison-check,
.comparison-cross {
    flex: 1;
    padding: 1rem;
    text-align: center;
}

.comparison-feature {
    flex: 2;
    text-align: left;
    font-weight: 500;
}

.comparison-check {
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.comparison-cross {
    color: #999;
    font-weight: 400;
}

.guarantee-section {
    padding: 4rem 2rem;
    background-color: #d4edda;
}

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

.guarantee-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #155724;
}

.guarantee-content p {
    font-size: 1.1rem;
    color: #155724;
    line-height: 1.7;
}

.faq-section {
    padding: 5rem 2rem;
    background-color: var(--background-alt);
}

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

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

.faq-item {
    background-color: #fff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.faq-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.cta-form-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.cta-form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--background-alt);
    border-radius: 8px;
}

.cta-form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--dark-color);
}

.cta-form-container > p {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-main {
    padding: 4rem 2rem;
    background-color: #fff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.contact-note {
    font-size: 0.9rem !important;
    color: #777 !important;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-image {
    flex: 1;
    background-color: #ddd;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.contact-reasons {
    padding: 5rem 2rem;
    background-color: var(--background-alt);
}

.contact-reasons h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.reason-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.reason-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.faq-contact {
    padding: 5rem 2rem;
    background-color: #fff;
}

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

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

.location-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

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

.location-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.thanks-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, var(--success-color) 0%, #208637 100%);
    color: #fff;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    background-color: #fff;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    margin: 0 auto 2rem;
    color: var(--success-color);
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
}

.thanks-info {
    padding: 5rem 2rem;
    background-color: #fff;
}

.thanks-info-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.step-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background-color: var(--background-alt);
    border-radius: 8px;
}

.step-icon {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    background-color: #fff;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    flex-shrink: 0;
}

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

.step-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.thanks-service-info {
    padding: 4rem 2rem;
    background-color: var(--background-alt);
}

.service-info-box {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-info-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.selected-service h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.selected-price {
    font-size: 1.3rem;
    color: #666;
    font-weight: 600;
}

.thanks-resources {
    padding: 5rem 2rem;
    background-color: #fff;
}

.thanks-resources h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.resource-card {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: var(--background-alt);
    border-radius: 8px;
    text-align: center;
}

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

.resource-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.resource-link {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.resource-link:hover {
    background-color: #234a6d;
}

.thanks-reminder {
    padding: 3rem 2rem;
    background-color: #fff3cd;
}

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

.reminder-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #856404;
}

.reminder-content p {
    font-size: 1rem;
    color: #856404;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-page {
    padding: 3rem 2rem;
    background-color: #fff;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.legal-intro {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--dark-color);
}

.legal-section p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-section ul li,
.legal-section ol li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #555;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table thead {
    background-color: var(--background-alt);
}

.cookie-table th,
.cookie-table td {
    padding: 0.8rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    color: var(--dark-color);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .solution-split,
    .science-split,
    .about-story-split,
    .values-split,
    .difference-split,
    .contact-split,
    .service-item-split {
        flex-direction: column;
    }

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

    .programs-grid {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        width: 100%;
        justify-content: space-around;
    }
}

@media (max-width: 768px) {
    .hero-content-left h1,
    .page-hero-content h1 {
        font-size: 2.2rem;
    }

    .intro-text h2,
    .solution-text h2,
    .science-text h2,
    .about-story h2,
    .values-text h2,
    .difference-text h2 {
        font-size: 1.8rem;
    }

    .problem-grid,
    .philosophy-grid,
    .testimonials-container,
    .additional-grid,
    .reasons-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}