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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #059669;
    --error-color: #dc2626;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
    padding: 120px 20px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-visual {
    margin-top: 3rem;
    width: 100%;
    max-width: 600px;
}

.hero-image-placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

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

.intro-section {
    background-color: var(--bg-white);
    padding: 100px 20px;
}

.intro-section h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.intro-section p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.story-section {
    background-color: var(--bg-light);
    padding: 100px 20px;
}

.story-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.story-text p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.story-visual {
    width: 100%;
}

.visual-block {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 12px;
}

.insight-section {
    background-color: var(--bg-white);
    padding: 100px 20px;
}

.insight-header {
    margin-bottom: 2rem;
}

.insight-label {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.insight-intro {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.insight-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.insight-point h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.insight-point p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.approach-section {
    background: linear-gradient(to right, #4facfe 0%, #00f2fe 100%);
    padding: 100px 20px;
    color: var(--bg-white);
}

.approach-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

.approach-columns {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.approach-column {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.approach-column h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.approach-column p {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.95;
}

.services-section {
    background-color: var(--bg-white);
    padding: 100px 20px;
}

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

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom right, #eff6ff, #ffffff);
}

.service-badge,
.service-badge-large {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.service-header {
    margin-bottom: 1.5rem;
}

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

.service-price {
    display: inline-block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-card p {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

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

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.testimonials-section {
    background-color: var(--bg-light);
    padding: 100px 20px;
}

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

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.testimonial {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.testimonial p {
    font-size: 1.125rem;
    color: var(--text-medium);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--text-dark);
}

.benefits-section {
    background-color: var(--bg-white);
    padding: 100px 20px;
}

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

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.benefit-item h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.benefit-item p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.form-section {
    background-color: var(--bg-light);
    padding: 100px 20px;
}

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

.form-intro {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.enrollment-form {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-notice {
    background-color: #fef3c7;
    border-left: 4px solid var(--accent-color);
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    color: #92400e;
    display: none;
}

.form-notice.show {
    display: block;
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-submit:disabled {
    background-color: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

.cta-final {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 20px;
    text-align: center;
    color: var(--bg-white);
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-final p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.main-footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 20px 30px;
}

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

.footer-column h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-column p {
    color: #9ca3af;
    line-height: 1.7;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
}

.btn-sticky {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
    transition: all 0.3s ease;
}

.btn-sticky:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 200;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.btn-cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-cookie-reject:hover {
    background-color: var(--bg-white);
    color: var(--text-dark);
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bg-white);
    padding: 80px 20px 60px;
    text-align: center;
}

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

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

.content-section {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.content-section p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.values-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

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

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
}

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

.value-item p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.story-section-alt {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

.story-section-alt h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-section-alt p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.approach-detail-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

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

.approach-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.approach-detail {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
}

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

.approach-detail p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.impact-section {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

.impact-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.impact-section p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.impact-list {
    list-style: none;
    margin: 2rem 0;
}

.impact-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.impact-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.commitment-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.commitment-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.commitment-section p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.cta-about {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    text-align: center;
    color: var(--bg-white);
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-about p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.services-intro {
    background-color: var(--bg-light);
    padding: 60px 20px;
}

.services-intro p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.services-detailed {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

.service-detail-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.service-detail-card.featured-service {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom right, #eff6ff, #ffffff);
}

.service-badge-large {
    top: -15px;
    right: 30px;
    font-size: 1rem;
    padding: 8px 20px;
}

.service-detail-header {
    margin-bottom: 2rem;
}

.service-detail-header h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-price-large {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.service-lead {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-detail-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-includes {
    list-style: none;
    margin: 1.5rem 0 2rem 0;
}

.service-includes li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
}

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

.comparison-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

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

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3rem;
}

.comparison-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.comparison-item h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.comparison-item p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.faq-section {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

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

.faq-item {
    margin-bottom: 2.5rem;
}

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

.faq-item p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.cta-services {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    text-align: center;
    color: var(--bg-white);
}

.cta-services h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-services p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.contact-content {
    background-color: var(--bg-white);
    padding: 80px 20px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

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

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

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

.contact-item p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 1rem;
    color: var(--text-light);
    font-style: italic;
}

.expectation-item {
    margin-bottom: 2.5rem;
}

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

.expectation-item p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.directions-section {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.directions-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.directions-section p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.alternative-contact {
    background-color: var(--bg-white);
    padding: 80px 20px;
    text-align: center;
}

.alternative-contact h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.alternative-contact p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.thanks-section {
    background-color: var(--bg-white);
    padding: 100px 20px;
}

.thanks-content {
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.thanks-details {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

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

.step-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-info {
    background-color: #eff6ff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    text-align: left;
}

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

.thanks-info p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-info a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.thanks-extras {
    background-color: var(--bg-light);
    padding: 80px 20px;
}

.thanks-extras h2 {
    font-size: 2rem;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.thanks-extras > div > p {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.extras-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.extra-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
}

.extra-item h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.extra-item p {
    font-size: 1.125rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.legal-page {
    background-color: var(--bg-white);
    padding: 80px 20px 100px;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.legal-updated {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content h4 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin: 1.5rem 0 1.5rem 2rem;
}

.legal-content li {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

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

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

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

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

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

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

.cookie-table td {
    color: var(--text-medium);
}

@media (min-width: 768px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }

    .story-grid {
        flex-direction: row;
        align-items: center;
    }

    .story-text {
        flex: 1;
    }

    .story-visual {
        flex: 1;
    }

    .approach-columns {
        flex-direction: row;
    }

    .approach-column {
        flex: 1;
    }

    .service-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .testimonials {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 1 1 calc(50% - 1.25rem);
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .approach-detail-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .approach-detail {
        flex: 1 1 calc(50% - 1.25rem);
    }

    .comparison-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .comparison-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-info,
    .contact-message {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        max-width: 600px;
    }

    .extras-grid {
        flex-direction: row;
    }

    .extra-item {
        flex: 1;
    }
}

@media (max-width: 767px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .btn-sticky {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .thanks-content h1 {
        font-size: 2rem;
    }
}