/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

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

ul {
    list-style: none;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.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: 1.5rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1d4ed8;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

/* Navigation */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-links a {
    font-size: 1rem;
    font-weight: 500;
    color: #4b5563;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: #2563eb;
}

.btn-nav {
    padding: 0.75rem 1.5rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-nav:hover {
    background: #1d4ed8;
}

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

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

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero-content > p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: #6b7280;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

/* Intro Split */
.intro-split {
    display: flex;
    align-items: center;
}

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

.split-image {
    flex: 1;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    padding: 5rem 4rem;
}

.split-content h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
    color: #111827;
}

.split-content p {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.link-arrow {
    color: #2563eb;
    font-weight: 600;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    margin-top: 1rem;
}

.link-arrow::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.link-arrow:hover::after {
    transform: translateX(5px);
}

/* Trust Builder */
.trust-builder {
    padding: 6rem 2rem;
    background: #f9fafb;
}

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

.trust-left {
    flex: 1;
}

.trust-left h3 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.trust-left p {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.8;
}

.trust-right {
    flex: 1.2;
}

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

.credential-item {
    flex: 1;
    min-width: 200px;
}

.credential-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #2563eb;
}

.credential-item p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Services Preview */
.services-preview {
    padding: 6rem 2rem;
    background: #ffffff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-center h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #111827;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #6b7280;
}

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

.service-card {
    flex: 1;
    padding: 2.5rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.service-card.featured {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border-color: #1d4ed8;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #fbbf24;
    color: #78350f;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.service-icon {
    margin-bottom: 1.5rem;
    color: #2563eb;
}

.service-card.featured .service-icon {
    color: #ffffff;
}

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

.service-card.featured h3 {
    color: #ffffff;
}

.service-card p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2563eb;
}

.service-card.featured .service-price {
    color: #ffffff;
}

.services-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Testimonial Split */
.testimonial-split {
    display: flex;
    align-items: stretch;
}

.testimonial-content {
    flex: 1;
    background: #111827;
    color: #ffffff;
    padding: 5rem 4rem;
    display: flex;
    align-items: center;
}

.testimonial-content blockquote {
    max-width: 550px;
}

.testimonial-content p {
    font-size: 1.5rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-content footer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-content strong {
    font-size: 1.1rem;
    font-weight: 700;
}

.testimonial-content span {
    font-size: 0.95rem;
    color: #9ca3af;
}

.testimonial-image {
    flex: 1;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

/* Approach Section */
.approach-section {
    padding: 6rem 2rem;
    background: #f9fafb;
}

.approach-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.approach-left {
    flex: 1.2;
}

.approach-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #111827;
}

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

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

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    line-height: 1;
    flex-shrink: 0;
    opacity: 0.6;
}

.step-content h4 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #111827;
}

.step-content p {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
}

.approach-right {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.approach-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

/* Value Prop Split */
.value-prop-split {
    display: flex;
    align-items: center;
}

.value-prop-split.reverse {
    flex-direction: row-reverse;
}

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

.benefit-list li {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Full Service List */
.full-service-list {
    padding: 6rem 2rem;
    background: #ffffff;
}

.service-table {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.service-row:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
}

.service-name {
    flex: 2;
}

.service-name h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.service-name p {
    font-size: 0.95rem;
    color: #6b7280;
}

.service-details {
    flex: 1;
    font-size: 1rem;
    color: #6b7280;
    font-weight: 500;
}

.service-pricing {
    flex: 1;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.service-action {
    flex: 0.5;
}

.btn-small {
    padding: 0.65rem 1.5rem;
    background: #2563eb;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
}

.btn-small:hover {
    background: #1d4ed8;
}

/* Urgency Section */
.urgency-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.urgency-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.urgency-left h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #78350f;
}

.urgency-left p {
    font-size: 1.1rem;
    color: #92400e;
}

.availability-indicator {
    text-align: center;
}

.spots-remaining {
    font-size: 2.5rem;
    font-weight: 800;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.urgency-right p {
    font-size: 1rem;
    color: #92400e;
}

/* Enrollment Section */
.enrollment-section {
    padding: 6rem 2rem;
    background: #f9fafb;
}

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

.enrollment-left {
    flex: 1;
}

.enrollment-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.enrollment-left > p {
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit-item svg {
    color: #10b981;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1rem;
    color: #4b5563;
}

.enrollment-right {
    flex: 1;
}

.enrollment-form {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #374151;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    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: #2563eb;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #1d4ed8;
}

/* Final CTA Split */
.final-cta-split {
    display: flex;
    align-items: center;
}

.final-cta-content {
    flex: 1;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #ffffff;
    padding: 5rem 4rem;
}

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

.final-cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #d1d5db;
    line-height: 1.7;
}

.final-cta-image {
    flex: 1;
    overflow: hidden;
}

.final-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.btn-primary-large {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.15rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2563eb;
    color: #ffffff;
}

/* Footer */
.footer {
    background: #111827;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-column {
    flex: 1;
}

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

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

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column ul li a {
    color: #9ca3af;
    font-size: 0.95rem;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

.sticky-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background: #2563eb;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
}

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

/* Page Hero Split */
.page-hero-split {
    display: flex;
    min-height: 60vh;
    align-items: stretch;
}

/* Story Section */
.story-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.story-left {
    flex: 1;
}

.story-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #111827;
}

.story-left p {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-right {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.story-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

/* Values Split */
.values-split {
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

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

.value-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #111827;
}

.value-item p {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Team Approach */
.team-approach {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
}

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

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.member-role {
    font-size: 1rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member > p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
}

/* Methodology Split */
.methodology-split {
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
    background: #f9fafb;
}

.methodology-content {
    flex: 1;
    padding-right: 4rem;
}

.methodology-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.methodology-content > p {
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

.method-step {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-marker {
    font-weight: 700;
    color: #2563eb;
    font-size: 1.1rem;
}

.method-step p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
}

.methodology-image {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.methodology-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

/* Results Section */
.results-section {
    padding: 6rem 2rem;
    background: #111827;
    color: #ffffff;
}

.results-section .section-header-center h2 {
    color: #ffffff;
}

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

.result-card {
    flex: 1;
    text-align: center;
    padding: 2rem;
}

.result-stat {
    font-size: 4rem;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 1rem;
}

.result-card p {
    font-size: 1.1rem;
    color: #d1d5db;
    line-height: 1.6;
}

/* Testimonials About */
.testimonials-about {
    padding: 6rem 2rem;
    background: #f9fafb;
}

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

.testimonial-card-full {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card-full blockquote p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #374151;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-card-full footer {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-card-full strong {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
}

.testimonial-card-full span {
    font-size: 0.95rem;
    color: #6b7280;
}

/* CTA About */
.cta-about {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
}

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

.cta-about-container h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.cta-about-container .btn-primary-large {
    background: #ffffff;
    color: #2563eb;
}

.cta-about-container .btn-primary-large:hover {
    background: #f3f4f6;
}

/* Service Detail Split */
.service-detail-split {
    display: flex;
    align-items: stretch;
    padding: 6rem 0;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem 4rem;
}

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

.service-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.service-price-large {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.popular-badge {
    display: inline-block;
    background: #fbbf24;
    color: #78350f;
    padding: 0.4rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.service-intro {
    font-size: 1.15rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.service-includes h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #111827;
}

.check-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.check-list li {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 0.85rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
    font-size: 1.3rem;
}

.service-ideal {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
}

.service-ideal h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #111827;
}

.service-ideal p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 700px;
}

/* Comparison Section */
.comparison-section {
    padding: 6rem 2rem;
    background: #f9fafb;
}

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

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th {
    background: #111827;
    color: #ffffff;
    padding: 1.25rem;
    text-align: left;
    font-weight: 700;
    font-size: 1rem;
}

.comparison-table td {
    padding: 1.25rem;
    border-bottom: 1px solid #e5e7eb;
    font-size: 1rem;
    color: #4b5563;
}

.comparison-table tr:hover {
    background: #f9fafb;
}

.highlight-row {
    background: #eff6ff !important;
}

/* Guarantee Section */
.guarantee-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.guarantee-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

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

.guarantee-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 10px;
}

.guarantee-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2563eb;
}

.guarantee-item p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

/* FAQ Split */
.faq-split {
    display: flex;
    gap: 4rem;
    padding: 6rem 2rem;
    background: #f9fafb;
}

.faq-left {
    flex: 0.8;
}

.faq-left h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
}

.faq-right {
    flex: 1.5;
}

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

.faq-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #111827;
}

.faq-item p {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Final CTA Services */
.final-cta-services {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    color: #ffffff;
}

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

.cta-services-container h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-services-container p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #d1d5db;
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 2rem;
    background: #f9fafb;
}

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

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

.contact-icon {
    color: #2563eb;
    margin: 0 auto 1.5rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.contact-card p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: #2563eb;
    font-weight: 600;
}

.contact-note {
    font-size: 0.95rem !important;
    color: #6b7280 !important;
    margin-top: 1rem;
}

/* Location Split */
.location-split {
    display: flex;
    gap: 4rem;
    padding: 6rem 2rem;
    background: #ffffff;
}

.location-content {
    flex: 1;
}

.location-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.location-content > p {
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.directions-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.direction-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #111827;
}

.direction-item p {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
}

.location-map {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Visit Info */
.visit-info {
    padding: 5rem 2rem;
    background: #f9fafb;
}

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

.visit-container h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.visit-container p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Response Expectations */
.response-expectations {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.expectation-card {
    flex: 1;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 10px;
}

.expectation-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2563eb;
}

.expectation-card p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Quick Questions */
.quick-questions {
    padding: 6rem 2rem;
    background: #f9fafb;
}

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

.quick-questions-container h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #111827;
}

.quick-questions-container > p {
    font-size: 1.1rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
}

.quick-faq {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.quick-faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.quick-faq-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #111827;
}

.quick-faq-item p {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
}

/* CTA Contact */
.cta-contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
}

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

.cta-contact-container h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-contact-container p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-contact-container .btn-primary-large {
    background: #ffffff;
    color: #2563eb;
}

.cta-contact-container .btn-primary-large:hover {
    background: #f3f4f6;
}

/* Thanks Page */
.thanks-hero {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

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

.thanks-icon {
    color: #10b981;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.thanks-message {
    font-size: 1.25rem;
    color: #6b7280;
}

/* Next Steps Section */
.next-steps-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.next-steps-container h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2563eb;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #111827;
}

.timeline-content p {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Selected Service Info */
.selected-service-info {
    padding: 4rem 2rem;
    background: #eff6ff;
}

.service-info-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-info-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.selected-program {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 1rem;
}

.service-info-container p {
    font-size: 1.05rem;
    color: #6b7280;
}

/* Preparation Section */
.preparation-section {
    padding: 6rem 2rem;
    background: #f9fafb;
}

.preparation-container {
    max-width: 1100px;
    margin: 0 auto;
}

.preparation-container h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #111827;
}

.preparation-container > p {
    font-size: 1.1rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
}

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

.prep-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.prep-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #2563eb;
}

.prep-item p {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
}

/* While Waiting */
.while-waiting {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.while-waiting-container h2 {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #111827;
}

.waiting-actions {
    display: flex;
    gap: 2rem;
}

.action-card {
    flex: 1;
    padding: 2.5rem;
    background: #f9fafb;
    border-radius: 12px;
    text-align: center;
}

.action-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.action-card p {
    font-size: 1.05rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Confirmation Details */
.confirmation-details {
    padding: 5rem 2rem;
    background: #f9fafb;
}

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

.confirmation-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.confirmation-container > p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-backup {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.contact-backup p {
    font-size: 1.05rem;
    color: #4b5563;
    margin-bottom: 0.75rem;
}

.contact-backup a {
    color: #2563eb;
    font-weight: 600;
}

/* Thanks Footer CTA */
.thanks-footer-cta {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.thanks-cta-container h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #111827;
}

.thanks-cta-container p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2.5rem;
}

/* Legal Page */
.legal-page {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.legal-updated {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1.25rem;
    color: #111827;
}

.legal-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #374151;
}

.legal-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
}

.legal-content p {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

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

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

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

.legal-content li {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1d4ed8;
}

.legal-content strong {
    font-weight: 700;
    color: #111827;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0 2rem;
    background: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
}

.cookies-table th {
    background: #e5e7eb;
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    color: #111827;
}

.cookies-table td {
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
    color: #4b5563;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .testimonial-split,
    .value-prop-split,
    .values-split,
    .final-cta-split,
    .page-hero-split,
    .service-detail-split,
    .location-split,
    .methodology-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .value-prop-split.reverse,
    .service-detail-split.reverse {
        flex-direction: column;
    }

    .trust-container,
    .enrollment-container,
    .approach-split,
    .story-container,
    .faq-split {
        flex-direction: column;
    }

    .services-grid,
    .results-grid,
    .expectations-grid,
    .contact-grid,
    .waiting-actions,
    .preparation-grid {
        flex-direction: column;
    }

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

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

    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .nav-container {
        flex-wrap: wrap;
        padding: 1rem;
    }

    .nav-links {
        order: 3;
        width: 100%;
        margin-top: 1rem;
        justify-content: center;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-table {
        gap: 1rem;
    }

    .service-row {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

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

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

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

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

@media (max-width: 480px) {
    .cookie-content {
        flex-direction: column;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}