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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.navbar {
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

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

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

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

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

.hero-left,
.hero-right {
    flex: 1;
    min-height: 500px;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 4rem 6rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-right {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

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

.cta-btn {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.intro-split,
.split-story,
.testimonials-split,
.why-us-split,
.final-cta-split,
.services-intro-split,
.about-split,
.mission-split,
.values-split,
.contact-split,
.thanks-details-split,
.faq-split {
    display: flex;
    align-items: stretch;
}

.intro-split.reverse,
.mission-split.reverse,
.why-us-split.reverse {
    flex-direction: row-reverse;
}

.split-content,
.split-image {
    flex: 1;
}

.split-content {
    padding: 5rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.split-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.split-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

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

.inline-cta {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
}

.inline-cta:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.benefits-cards {
    padding: 6rem 4rem;
    background: var(--bg-light);
}

.benefits-cards h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3.5rem;
}

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

.card {
    flex: 1 1 calc(50% - 1rem);
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

.services-pricing {
    padding: 6rem 4rem;
    background: white;
}

.services-pricing h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.pricing-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.15);
}

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

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.pricing-card .description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.features {
    margin-bottom: 2rem;
}

.features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-light);
}

.features li:last-child {
    border-bottom: none;
}

.features li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: 700;
    margin-right: 0.8rem;
}

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

.select-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.form-split {
    display: flex;
    background: var(--bg-light);
    padding: 0;
}

.form-left,
.form-right {
    flex: 1;
    padding: 5rem 4rem;
}

.form-left {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.form-left p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.form-benefits {
    margin-top: 2rem;
}

.form-benefits li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
}

.form-right {
    background: white;
}

.contact-form {
    max-width: 500px;
}

.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: 0.9rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    padding: 1.1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.urgency-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    text-align: center;
}

.urgency-content {
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.urgency-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.urgency-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-btn-large {
    display: inline-block;
    background: white;
    color: #d97706;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.cta-btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.25);
}

.inline-cta-large {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    margin-top: 1.5rem;
}

.cta-btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

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

.checklist {
    margin-top: 1.5rem;
}

.checklist li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.05rem;
}

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

.footer {
    background: #1f2937;
    color: white;
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #9ca3af;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: 0.9rem;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #60a5fa;
    text-decoration: underline;
}

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

.btn-primary,
.btn-secondary {
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

.btn-secondary:hover {
    background: white;
    color: #1f2937;
}

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

.sticky-cta.show {
    display: block;
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.sticky-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--secondary-color);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5);
    transform: translateY(-3px);
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 2rem 4rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

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

.timeline-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 4rem;
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    width: 80px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.timeline-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.team-section {
    padding: 6rem 4rem;
    background: white;
}

.team-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 3rem auto 0;
}

.team-member {
    flex: 1 1 calc(25% - 2rem);
    text-align: center;
}

.member-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.team-member p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

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

.stats-section {
    padding: 5rem 4rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
}

.stats-section h2 {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

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

.stat-item {
    flex: 1 1 calc(25% - 2.5rem);
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

.cta-about {
    padding: 5rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.services-detailed {
    padding: 6rem 4rem;
    background: white;
    max-width: 1400px;
    margin: 0 auto;
}

.services-detailed h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.service-detail-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.service-title-area h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-level {
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-price-area {
    text-align: right;
}

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-details-grid {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.detail-col {
    flex: 1;
}

.detail-col h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.detail-col ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.detail-col ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

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

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.comparison-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.comparison-table thead {
    background: var(--primary-color);
    color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
}

.comparison-table th {
    font-weight: 600;
}

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

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.comparison-table tbody tr.highlighted-row {
    background: #eff6ff;
}

.table-note {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.faq-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

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

.enrollment-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    text-align: center;
    color: white;
}

.enrollment-cta h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.enrollment-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.contact-info-block {
    margin-bottom: 3rem;
}

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

.contact-info-block p {
    line-height: 1.8;
}

.contact-info-block a {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.transport-list li {
    padding: 0.6rem 0;
    color: var(--text-light);
}

.transport-list strong {
    color: var(--text-dark);
}

.map-placeholder {
    background: #e5e7eb;
    padding: 3rem;
    text-align: center;
    margin-top: 2rem;
    border-radius: 12px;
}

.map-placeholder p {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.map-note {
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.visit-info h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

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

.visit-card {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.visit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.visit-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

.online-alternative {
    padding: 5rem 4rem;
    background: white;
    text-align: center;
}

.online-content {
    max-width: 900px;
    margin: 0 auto;
}

.online-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.online-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.quick-questions {
    padding: 5rem 4rem;
    background: var(--bg-light);
}

.quick-questions h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

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

.qa-item {
    flex: 1 1 calc(50% - 1rem);
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.qa-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

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

.qa-item a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-cta {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.contact-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
}

.contact-cta a {
    color: white;
    font-weight: 700;
    text-decoration: underline;
}

.thanks-hero {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-align: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: white;
    color: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    font-weight: 800;
    margin: 0 auto 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

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

.next-steps {
    max-width: 700px;
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

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

.step-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

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

.selected-service-info {
    padding: 4rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

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

.service-info-content h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.selected-service-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-note {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.thanks-testimonial {
    padding: 5rem 4rem;
    background: white;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-content h2 {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

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

.testimonial-box p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
}

.while-you-wait {
    padding: 5rem 4rem;
    background: var(--bg-light);
}

.while-you-wait h2 {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.wait-options {
    display: flex;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.option-card {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.option-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.option-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.email-check {
    padding: 4rem 2rem;
    background: #eff6ff;
    text-align: center;
}

.email-reminder {
    max-width: 800px;
    margin: 0 auto;
}

.email-reminder h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.email-reminder p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.email-help {
    font-size: 1rem;
}

.email-help a {
    color: var(--primary-color);
    font-weight: 600;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.author {
    font-weight: 600;
    opacity: 0.9;
}

.legal-page {
    padding: 6rem 2rem;
    background: white;
}

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

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

.update-date {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.legal-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
    color: var(--text-dark);
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-section ul {
    list-style: disc;
}

.legal-section ol {
    list-style: decimal;
}

.legal-section li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--primary-color);
    font-weight: 600;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .split-story,
    .testimonials-split,
    .why-us-split,
    .final-cta-split,
    .form-split,
    .services-intro-split,
    .about-split,
    .mission-split,
    .values-split,
    .contact-split,
    .thanks-details-split,
    .faq-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .mission-split.reverse,
    .why-us-split.reverse {
        flex-direction: column;
    }

    .split-content {
        padding: 3rem 2rem;
    }

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

    .card {
        flex: 1 1 100%;
    }

    .pricing-container {
        flex-direction: column;
    }

    .pricing-card {
        flex: 1 1 100%;
    }

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

    .team-member {
        flex: 1 1 100%;
    }

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

    .stat-item {
        flex: 1 1 100%;
    }

    .service-details-grid {
        flex-direction: column;
    }

    .visit-grid,
    .wait-options {
        flex-direction: column;
    }

    .quick-qa-grid {
        flex-direction: column;
    }

    .qa-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .split-content h2 {
        font-size: 2rem;
    }

    .benefits-cards h2 {
        font-size: 2.2rem;
    }

    .services-pricing h2 {
        font-size: 2.3rem;
    }

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

    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        gap: 1.5rem;
    }

    .timeline-year {
        width: 60px;
        font-size: 1.2rem;
    }

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

    .service-price-area {
        text-align: left;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 1rem;
    }
}
