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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f4f4f4;
    --accent-color: #d4a574;
    --text-color: #333;
    --light-text: #666;
    --border-color: #e0e0e0;
    --success-color: #2ecc71;
}

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

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

h1, h2, h3, h4 {
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

ul {
    list-style: none;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f9f9f9;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.85rem;
    color: var(--light-text);
    border-bottom: 1px solid var(--border-color);
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-width: 90%;
    width: auto;
}

.nav-brand {
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 3rem;
}

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

.nav-links a {
    font-weight: 500;
    transition: color 0.3s ease;
}

/* Hero Visual Section */
.hero-visual {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #2a2a2a;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    max-width: 800px;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
    font-size: 1.4rem;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Intro Narrative */
.intro-narrative {
    padding: 6rem 2rem;
    background-color: #fff;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

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

/* Image Text Overlap */
.image-text-overlap {
    display: flex;
    align-items: center;
    padding: 0;
    min-height: 600px;
    position: relative;
}

.image-left {
    flex: 1;
    background-color: #e8e8e8;
}

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

.text-right {
    flex: 1;
    padding: 4rem;
    background-color: #f9f9f9;
}

.text-right h2 {
    margin-bottom: 1.5rem;
}

.text-right p {
    font-size: 1.15rem;
    line-height: 1.7;
}

/* Full Width Statement */
.full-width-statement {
    width: 100%;
    height: 70vh;
    position: relative;
    margin: 4rem 0;
}

.statement-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #3a3a3a;
}

.statement-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.statement-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    max-width: 700px;
    padding: 2rem;
}

.statement-text h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.statement-text p {
    font-size: 1.4rem;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}

/* Insight Section */
.insight-section {
    padding: 6rem 2rem;
    background-color: #f4f4f4;
}

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

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

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

.insight-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.insight-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
}

.insight-item h3 {
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.insight-item p {
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Visual Showcase */
.visual-showcase {
    padding: 4rem 2rem;
    background-color: #fff;
}

.showcase-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.showcase-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 400px;
    text-align: center;
    background-color: #fafafa;
}

.showcase-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.showcase-item p {
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Trust Building */
.trust-building {
    padding: 5rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.trust-building h2 {
    margin-bottom: 1.5rem;
}

.trust-building p {
    font-size: 1.2rem;
    line-height: 1.7;
}

/* Testimonials Inline */
.testimonials-inline {
    padding: 4rem 2rem;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.testimonial {
    flex: 1 1 calc(50% - 3rem);
    min-width: 300px;
    max-width: 500px;
    padding: 2rem;
    background-color: #f4f4f4;
    border-left: 4px solid var(--accent-color);
}

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

.testimonial span {
    display: block;
    font-size: 0.95rem;
    color: var(--light-text);
    font-style: normal;
}

/* Services Reveal */
.services-reveal {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.15rem;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(50% - 2rem);
    min-width: 320px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fafafa;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
}

.service-card p {
    padding: 0 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--light-text);
}

.service-card .price {
    display: block;
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: var(--accent-color);
}

/* Form Section */
.form-section {
    padding: 6rem 2rem;
    background-color: #fff;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.form-container p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.enrollment-form {
    background-color: #f9f9f9;
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.form-group input {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    background-color: #fff;
}

.form-group input[readonly] {
    background-color: #e8e8e8;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--accent-color);
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 4rem 2rem;
    background-color: #f4f4f4;
}

.disclaimer {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--light-text);
    font-style: italic;
    border-left: 3px solid var(--accent-color);
    padding-left: 1.5rem;
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: #fff;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-col p {
    color: #ccc;
    font-size: 0.95rem;
}

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

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

.footer-col ul li a:hover {
    color: var(--accent-color);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    color: #fff;
    margin: 0;
    flex: 1 1 400px;
}

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

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

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: #c89866;
}

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

.cookie-btn.reject:hover {
    background-color: #666;
}

/* Page Hero */
.page-hero {
    width: 100%;
    height: 60vh;
    position: relative;
    overflow: hidden;
    margin-top: 5rem;
}

.page-hero.small-hero {
    height: 40vh;
}

/* About Content */
.about-content {
    padding: 6rem 2rem;
    background-color: #fff;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.approach-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.approach-item h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.approach-item p {
    line-height: 1.6;
}

/* Philosophy Section */
.philosophy-section {
    padding: 5rem 2rem;
    background-color: #fff;
}

.philosophy-section h2 {
    margin-bottom: 1.5rem;
}

.philosophy-section p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Team Visual */
.team-visual {
    padding: 5rem 2rem;
    background-color: #f4f4f4;
}

.team-visual h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.team-visual p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

.team-image {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ddd;
}

.team-image img {
    width: 100%;
    height: auto;
}

/* Services Intro Section */
.services-intro-section {
    padding: 6rem 2rem;
    background-color: #fff;
}

.services-intro-section h2 {
    margin-bottom: 1.5rem;
}

.services-intro-section p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Services Detailed */
.services-detailed {
    padding: 4rem 2rem;
    background-color: #f9f9f9;
}

.service-detail-card {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

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

.service-detail-image {
    flex: 1;
    min-width: 400px;
    background-color: #e0e0e0;
}

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

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

.service-detail-content h3 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.service-detail-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-detail-content ul {
    margin: 1.5rem 0;
    list-style: disc;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.service-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: var(--accent-color);
}

/* CTA Bottom Section */
.cta-bottom-section {
    padding: 5rem 2rem;
    background-color: #fff;
    text-align: center;
}

.cta-bottom-section h2 {
    margin-bottom: 1rem;
}

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

.cta-button-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button-large:hover {
    background-color: var(--accent-color);
}

/* Contact Content */
.contact-content {
    padding: 6rem 2rem;
    background-color: #fff;
}

.contact-content h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-content > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.contact-info-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 350px;
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.contact-info-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.email-note {
    font-size: 0.85rem;
    color: var(--light-text);
    font-style: italic;
    margin-top: 0.5rem;
}

/* Contact Additional */
.contact-additional {
    padding: 4rem 2rem;
    background-color: #f4f4f4;
}

.contact-additional h3 {
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.contact-additional h3:first-child {
    margin-top: 0;
}

.contact-additional p {
    line-height: 1.7;
}

.contact-additional a {
    color: var(--accent-color);
    font-weight: 600;
}

/* Thanks Section */
.thanks-section {
    padding: 8rem 2rem;
    background-color: #f9f9f9;
    min-height: 70vh;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--success-color);
}

.thanks-message {
    margin-bottom: 2.5rem;
}

.thanks-message p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-confirmation {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.thanks-next-steps {
    text-align: left;
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.thanks-next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.thanks-next-steps ol {
    list-style: decimal;
    padding-left: 1.5rem;
}

.thanks-next-steps li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

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

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

.btn-secondary {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Legal Content */
.legal-content {
    padding: 8rem 2rem 6rem;
    background-color: #fff;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-nav {
        flex-direction: column;
        gap: 1rem;
        top: 1rem;
        padding: 1rem;
    }

    .nav-brand {
        margin-right: 0;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .image-text-overlap {
        flex-direction: column;
        min-height: auto;
    }

    .image-left img {
        height: 400px;
    }

    .text-right {
        padding: 2rem;
    }

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

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

    .testimonials-inline {
        flex-direction: column;
    }

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

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

    .service-detail-image {
        min-width: 100%;
    }

    .service-detail-content {
        padding: 2rem;
    }

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

    .contact-info-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }
}