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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

h1, h2, h3, h4 {
    font-family: 'Arial', 'Helvetica', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: #1a1a1a;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

p {
    margin-bottom: 1.2rem;
}

a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #666;
}

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

ul {
    list-style: none;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
}

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

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

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

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

.btn-cookie {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background-color: #fff;
    color: #1a1a1a;
}

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

.btn-cookie.reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

/* Header */
.main-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-section .logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
}

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

.main-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.ad-disclosure {
    font-size: 0.8rem;
    color: #666;
    padding: 0.4rem 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Split-Screen Layouts */
.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #fff;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
    background-color: #f5f5f5;
}

.hero-text h2 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    background-color: #ddd;
}

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

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #333;
    transform: translateY(-2px);
}

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

.cta-secondary:hover {
    background-color: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}

/* Intro Split Section */
.intro-split {
    display: flex;
    background-color: #fff;
}

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

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

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

.intro-text {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

/* Services Showcase */
.services-showcase {
    padding: 6rem 3rem;
    background-color: #fafafa;
}

.services-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.1rem;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 400px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-image {
    width: 100%;
    height: 280px;
    background-color: #e8e8e8;
}

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

.service-content {
    padding: 2rem;
}

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

.service-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    padding: 0.9rem 2rem;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #333;
}

.btn-select-service.selected {
    background-color: #4a7c59;
}

/* Consultation Form Section */
.consultation-form-section {
    padding: 6rem 3rem;
    background-color: #f5f5f5;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border: 1px solid #e0e0e0;
}

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

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 2.5rem;
}

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

.consultation-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.consultation-form textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1.1rem 2rem;
    background-color: #1a1a1a;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #333;
}

/* Philosophy Split */
.philosophy-split {
    display: flex;
    background-color: #fff;
}

.philosophy-text {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.philosophy-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.philosophy-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

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

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

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 3rem;
    background-color: #f5f5f5;
}

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

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #fff;
    padding: 2rem;
    border-left: 3px solid #1a1a1a;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    color: #444;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 600;
    color: #666;
}

/* About Page Styles */
.page-hero {
    padding: 5rem 3rem 3rem;
    text-align: center;
    background-color: #f5f5f5;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: #666;
}

.about-split {
    display: flex;
    background-color: #fff;
}

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

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

.about-text {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

/* Process Section */
.process-section {
    padding: 6rem 3rem;
    background-color: #fafafa;
}

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

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ccc;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

/* Values Split */
.values-split {
    display: flex;
    background-color: #fff;
}

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

.values-text {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.values-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.values-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

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

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

/* Team Section */
.team-section {
    padding: 6rem 3rem;
    background-color: #f5f5f5;
}

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

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #666;
}

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

.team-member {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #fff;
    padding: 2rem;
    border: 1px solid #e0e0e0;
}

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

.team-member .role {
    font-size: 0.9rem;
    color: #888;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

/* Services Detailed */
.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detailed {
    display: flex;
    background-color: #fff;
    margin-bottom: 0;
}

.service-detailed.reverse {
    flex-direction: row-reverse;
}

.service-content-left,
.service-content-right {
    flex: 1;
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-image-right img,
.service-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detailed h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-detailed p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.2rem;
}

.service-pricing {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.price-label {
    font-size: 0.9rem;
    color: #888;
    margin-right: 1rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.services-note {
    padding: 4rem 3rem;
    background-color: #f5f5f5;
    text-align: center;
}

.services-note h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.services-note p {
    max-width: 900px;
    margin: 0 auto 1rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

/* Contact Page */
.contact-split {
    display: flex;
    background-color: #fff;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    padding: 5rem;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

.info-block .note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.contact-visual {
    flex: 1;
    background-color: #e8e8e8;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visit-section {
    padding: 5rem 3rem;
    background-color: #f5f5f5;
}

.visit-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.visit-info {
    max-width: 900px;
    margin: 0 auto;
}

.visit-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.consultation-cta {
    padding: 5rem 3rem;
    background-color: #fff;
    text-align: center;
}

.consultation-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.consultation-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Thanks Page */
.thanks-section {
    display: flex;
    min-height: 70vh;
    background-color: #fff;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.thanks-details p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.next-steps {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background-color: #f5f5f5;
}

.next-steps h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.next-steps li {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0.8rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
}

.thanks-visual {
    flex: 1;
    background-color: #e8e8e8;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 3rem 6rem;
    background-color: #fff;
}

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

.last-updated {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 3rem;
}

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

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

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

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

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

.legal-section li {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0.6rem;
}

.legal-section a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #666;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 3rem 2rem;
}

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

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

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #ccc;
}

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

.footer-section li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: #ccc;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #aaa;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #888;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .about-split,
    .philosophy-split,
    .values-split,
    .service-detailed,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

    .intro-split.reverse,
    .values-split.reverse,
    .service-detailed.reverse {
        flex-direction: column;
    }

    .hero-text,
    .intro-text,
    .about-text,
    .philosophy-text,
    .values-text,
    .service-content-left,
    .service-content-right,
    .contact-info,
    .thanks-content {
        padding: 3rem 2rem;
    }

    .hero-image,
    .intro-image,
    .about-image,
    .philosophy-image,
    .values-image,
    .service-image-left,
    .service-image-right,
    .contact-visual,
    .thanks-visual {
        min-height: 400px;
    }

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        padding: 1.5rem 1.5rem;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .services-grid,
    .process-container,
    .team-grid,
    .testimonials-container {
        flex-direction: column;
    }

    .service-card,
    .process-step,
    .team-member,
    .testimonial {
        min-width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .btn-cookie {
        width: 100%;
    }

    .thanks-actions {
        flex-direction: column;
    }
}