/* 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', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
    overflow-x: hidden;
}

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

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

ul {
    list-style-position: inside;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 55, 72, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

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

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

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

.btn-accept {
    background: #10b981;
    color: white;
}

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

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

/* Floating Navigation - Asymmetric */
.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%) rotate(-0.5deg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-nav:hover {
    transform: translateX(-50%) rotate(0deg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.nav-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: #1a202c;
    letter-spacing: -0.5px;
}

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

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #1a202c;
    transition: all 0.3s ease;
}

/* Hero Section - Asymmetric Offset */
.hero-offset {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-image-block {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 55%;
    height: 70%;
    transform: rotate(3deg);
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

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

.hero-text-block {
    position: relative;
    z-index: 2;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem;
    border-radius: 20px;
    transform: translateX(10%);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-text-block p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* CTAs */
.cta-primary {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #2563eb;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid #2563eb;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

.cta-inline {
    color: #2563eb;
    font-weight: 600;
    border-bottom: 2px solid #2563eb;
    padding-bottom: 2px;
}

.cta-inline:hover {
    color: #1d4ed8;
    border-color: #1d4ed8;
}

/* Intro Asymmetric Section */
.intro-asymmetric {
    display: flex;
    gap: 6rem;
    padding: 6rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.intro-left {
    flex: 0 0 40%;
    position: sticky;
    top: 150px;
}

.label-tag {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.intro-left h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1a202c;
    font-weight: 700;
}

.intro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro-right p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
}

/* Problem Amplify Section */
.problem-amplify {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
}

.problem-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.problem-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.problem-card.card-1 {
    transform: rotate(-2deg) translateY(-20px);
}

.problem-card.card-2 {
    transform: rotate(1deg) translateY(10px);
}

.problem-card.card-3 {
    transform: rotate(-1deg) translateY(-10px);
}

.problem-card:hover {
    transform: rotate(0deg) translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.problem-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.problem-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Trust Overlap Section */
.trust-overlap {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.trust-image {
    flex: 0 0 45%;
    position: relative;
    z-index: 1;
}

.trust-image img {
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    transform: rotate(-3deg);
}

.trust-content {
    flex: 1;
    background: #f8fafc;
    padding: 4rem;
    border-radius: 25px;
    transform: translateX(-3rem);
    position: relative;
    z-index: 2;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
    color: #1a202c;
    font-weight: 700;
    line-height: 1.2;
}

.trust-content p {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.benefit-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4a5568;
    font-size: 1.05rem;
}

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

/* Services Grid Section */
.services-grid {
    padding: 8rem 2rem;
    background: #1a202c;
    color: white;
}

.section-header-offset {
    max-width: 700px;
    margin: 0 auto 5rem;
    text-align: center;
    transform: translateX(-5%);
}

.section-header-offset h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header-offset p {
    font-size: 1.2rem;
    color: #cbd5e0;
}

.service-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background: #2d3748;
    border-radius: 20px;
    overflow: hidden;
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.service-card:nth-child(odd) {
    transform: rotate(-1deg);
}

.service-card:nth-child(even) {
    transform: rotate(1deg);
}

.service-card:hover {
    transform: rotate(0deg) translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.service-card.featured {
    border: 3px solid #fbbf24;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #fbbf24;
    color: #1a202c;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 10;
}

.service-image {
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-details {
    padding: 2rem;
}

.service-details h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.service-details p {
    color: #cbd5e0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.98rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.service-features span {
    background: rgba(37, 99, 235, 0.2);
    color: #93c5fd;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #10b981;
}

.price-unit {
    font-size: 0.9rem;
    color: #94a3b8;
}

.select-service-btn {
    width: 100%;
    padding: 1rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Testimonial Scattered Section */
.testimonial-scattered {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.testimonial-item {
    background: #fef3c7;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 400px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-item.t1 {
    transform: rotate(-2deg) translateY(-20px);
    background: #dbeafe;
}

.testimonial-item.t2 {
    transform: rotate(2deg) translateY(20px);
    background: #fce7f3;
}

.testimonial-item.t3 {
    transform: rotate(-1deg);
    background: #d1fae5;
}

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

.testimonial-author {
    display: block;
    font-weight: 600;
    color: #4a5568;
    font-size: 0.95rem;
}

/* CTA Overlap Section with Form */
.cta-overlap {
    padding: 8rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3);
}

.form-container {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.97);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transform: rotate(-1deg);
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 800;
}

.form-container > p {
    color: #4a5568;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2d3748;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

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

.btn-submit {
    padding: 1.2rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

/* Insights Stacked Section */
.insights-stacked {
    padding: 6rem 2rem;
    background: #f8fafc;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    align-items: center;
}

.insight-block {
    text-align: center;
    padding: 2rem;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.insight-number {
    font-size: 4rem;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.insight-block p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Why Now Section */
.why-now {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.why-content {
    flex: 1;
}

.why-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a202c;
    font-weight: 700;
    line-height: 1.2;
}

.why-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.why-visual {
    flex: 0 0 40%;
}

.why-visual img {
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    transform: rotate(2deg);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #2563eb;
    color: white;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 900;
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.5);
}

.sticky-cta span {
    font-weight: 600;
    font-size: 0.95rem;
}

.sticky-cta-btn {
    background: white;
    color: #2563eb;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
}

.sticky-cta-btn:hover {
    background: #f0f9ff;
}

/* Footer Offset */
.footer-offset {
    background: #1a202c;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #cbd5e0;
}

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

.footer-column a {
    display: block;
    color: #94a3b8;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: #2563eb;
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Page Hero Variations */
.page-hero-offset {
    padding: 10rem 2rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 800;
    line-height: 1.1;
}

.page-hero-content p {
    font-size: 1.3rem;
    color: #4a5568;
    line-height: 1.7;
}

.page-hero-image {
    flex: 0 0 45%;
}

.page-hero-image img {
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
}

.page-hero-centered {
    padding: 10rem 2rem 4rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.page-hero-centered h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 800;
    line-height: 1.1;
}

.page-hero-centered p {
    font-size: 1.3rem;
    color: #4a5568;
    line-height: 1.7;
}

/* About Page Sections */
.about-story {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a202c;
    font-weight: 700;
}

.story-container p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.9;
    margin-bottom: 1.8rem;
}

.mission-overlap {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    background: #f8fafc;
}

.mission-image {
    flex: 0 0 40%;
}

.mission-image img {
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg);
}

.mission-content {
    flex: 1;
}

.mission-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

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

.values-grid {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.values-grid h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a202c;
    font-weight: 700;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    flex: 1;
    min-width: 280px;
    max-width: 500px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #2563eb;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.value-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.05rem;
}

.approach-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 30px;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

.approach-text p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.approach-stats {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #2563eb;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: #4a5568;
    font-size: 0.95rem;
    font-weight: 600;
}

.team-intro {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a202c;
    font-weight: 700;
}

.team-intro p {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-simple {
    padding: 6rem 2rem;
    text-align: center;
    background: #1a202c;
    color: white;
}

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

.cta-simple p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #cbd5e0;
}

/* Services Detail Page */
.services-detail {
    padding: 4rem 2rem 8rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-detail-card {
    display: flex;
    gap: 4rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
    background: #f8fafc;
}

.service-detail-content {
    flex: 1;
}

.service-tag {
    display: inline-block;
    background: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.service-tag.popular {
    background: #fef3c7;
    color: #92400e;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 600;
}

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

.service-detail-content li {
    padding: 0.6rem 0;
    color: #4a5568;
    line-height: 1.6;
}

.pricing-display {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f0f9ff;
    border-radius: 15px;
    border-left: 5px solid #2563eb;
}

.price-large {
    font-size: 3rem;
    font-weight: 900;
    color: #2563eb;
}

.price-frequency {
    font-size: 1rem;
    color: #4a5568;
}

.service-detail-image {
    flex: 0 0 40%;
}

.service-detail-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.compare-services {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: #f8fafc;
    border-radius: 30px;
}

.compare-services h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
    font-weight: 700;
}

.comparison-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.compare-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.compare-card p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.98rem;
    margin-bottom: 0.8rem;
}

.enrollment-cta {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

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

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

/* Contact Page */
.contact-hero {
    padding: 10rem 2rem 4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 800;
}

.contact-hero p {
    font-size: 1.3rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-content {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

.contact-info-block > p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.contact-method h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a202c;
    font-weight: 600;
}

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

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

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

.note {
    font-size: 0.95rem;
    color: #64748b;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-image-block {
    flex: 0 0 40%;
}

.contact-image-block img {
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
}

.faq-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: #f8fafc;
    border-radius: 30px;
}

.faq-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
    font-weight: 700;
}

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

.faq-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.02rem;
}

.location-info {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.location-info h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
    font-weight: 700;
}

.location-info > p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 3rem;
}

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

.direction-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    flex: 1;
    min-width: 250px;
}

.direction-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a202c;
    font-weight: 600;
}

.direction-item p {
    color: #4a5568;
    line-height: 1.6;
}

.enrollment-prompt {
    padding: 6rem 2rem;
    text-align: center;
    background: #1a202c;
    color: white;
}

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

.enrollment-prompt p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #cbd5e0;
}

/* Thanks Page */
.thanks-hero {
    padding: 10rem 2rem 6rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.checkmark-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 3rem;
    margin-bottom: 2rem;
}

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

.thanks-message {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a202c;
    font-weight: 700;
}

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

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

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

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
    font-weight: 600;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
}

.selected-service {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border-left: 5px solid #2563eb;
}

.selected-service p {
    color: #1a202c;
    font-size: 1.05rem;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.thanks-contact {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    text-align: center;
}

.thanks-contact p {
    color: #4a5568;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

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

.thanks-image {
    flex: 0 0 40%;
}

.thanks-image img {
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
}

.additional-resources {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    background: #f8fafc;
}

.additional-resources h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a202c;
    font-weight: 700;
}

.resource-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.resource-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.resource-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.resource-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

/* Legal Pages */
.legal-content {
    padding: 10rem 2rem 6rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #1a202c;
    font-weight: 800;
}

.updated-date {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #1a202c;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #1a202c;
    font-weight: 600;
}

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

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

.legal-content li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.legal-content a {
    color: #2563eb;
    font-weight: 600;
}

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

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

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookies-table th {
    background: #2563eb;
    color: white;
    font-weight: 600;
}

.cookies-table td {
    color: #4a5568;
}

/* Responsive Design - Mobile First */
@media (max-width: 1024px) {
    .floating-nav {
        top: 1rem;
        padding: 1rem 1.5rem;
        gap: 1.5rem;
    }

    .hero-offset {
        flex-direction: column;
        padding: 6rem 1.5rem 3rem;
    }

    .hero-image-block {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        transform: rotate(0);
        margin-bottom: 2rem;
    }

    .hero-text-block {
        transform: none;
        padding: 2.5rem;
    }

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

    .intro-asymmetric {
        flex-direction: column;
        padding: 4rem 1.5rem;
        gap: 3rem;
    }

    .intro-left {
        position: static;
    }

    .trust-overlap,
    .mission-overlap,
    .why-now,
    .approach-section {
        flex-direction: column;
        padding: 4rem 1.5rem;
        gap: 3rem;
    }

    .trust-content {
        transform: none;
        padding: 2.5rem;
    }

    .page-hero-offset,
    .contact-content {
        flex-direction: column;
        gap: 3rem;
    }

    .thanks-hero {
        flex-direction: column;
        padding: 8rem 1.5rem 4rem;
    }

    .service-detail-card {
        flex-direction: column;
        padding: 2rem;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 5rem;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        border-radius: 20px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
        gap: 1rem;
        width: 90%;
        max-width: 300px;
    }

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

    .nav-toggle {
        display: flex;
    }

    .floating-nav {
        padding: 0.8rem 1.5rem;
    }

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

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

    .page-hero-centered h1,
    .page-hero-content h1,
    .contact-hero h1 {
        font-size: 2.5rem;
    }

    .section-header-offset h2 {
        font-size: 2.2rem;
    }

    .form-container {
        padding: 2.5rem;
        transform: none;
    }

    .insight-number {
        font-size: 3rem;
    }

    .sticky-cta {
        padding: 1rem;
    }

    .sticky-cta span {
        font-size: 0.85rem;
    }
}

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

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

    .cta-primary,
    .cta-secondary {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }

    .problem-card,
    .testimonial-item {
        transform: none;
    }

    .problem-card:hover,
    .testimonial-item:hover {
        transform: translateY(-5px);
    }

    .service-card {
        transform: none;
    }

    .service-card:hover {
        transform: translateY(-5px);
    }
}