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

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

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

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

a:hover {
    color: #d35400;
}

/* Container Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-split {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

@media (max-width: 768px) {
    .container-split,
    .container-split.reverse {
        flex-direction: column;
        gap: 30px;
    }
}

/* Header and Navigation */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    border: 1px solid #bdc3c7;
    padding: 4px 8px;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 14px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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: 20px;
}

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

.cookie-content a {
    color: #3498db;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-buttons {
        justify-content: center;
    }
}

/* Hero Section - Split Screen */
.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #fef9f5;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #fef9f5;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 32px;
}

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

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

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 60px 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }
}

/* Buttons */
.btn-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e67e22;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-large:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.btn-primary {
    padding: 12px 28px;
    background-color: #e67e22;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #d35400;
}

.btn-secondary {
    padding: 12px 28px;
    background-color: transparent;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.btn-service {
    padding: 12px 28px;
    background-color: #3498db;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 16px;
}

.btn-service:hover {
    background-color: #2980b9;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Intro Section */
.intro-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
    text-align: center;
}

/* Services - Alternating Layout */
.services-alternating {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title-center {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.service-row {
    display: flex;
    margin-bottom: 80px;
    gap: 60px;
    align-items: center;
}

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

.service-image {
    flex: 1;
    background-color: #e8dfd3;
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 400px;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 20px;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 6px;
    border-left: 4px solid #e67e22;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #e67e22;
}

.duration {
    font-size: 14px;
    color: #7f8c8d;
}

@media (max-width: 968px) {
    .service-row,
    .service-row.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .service-image img {
        height: 300px;
    }
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.philosophy-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.philosophy-image {
    flex: 1;
    background-color: #e8dfd3;
    border-radius: 8px;
    overflow: hidden;
}

.philosophy-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* Form Section */
.form-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
    text-align: center;
}

.form-section > p {
    text-align: center;
    color: #34495e;
    margin-bottom: 40px;
}

.main-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 20px;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonials-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    background-color: #34495e;
    padding: 32px;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #95a5a6;
}

@media (max-width: 968px) {
    .testimonials-grid {
        flex-direction: column;
    }
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 16px;
    color: #ffffff;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #bdc3c7;
}

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

.footer-disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 14px;
    color: #95a5a6;
}

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

/* Page Hero */
.page-hero {
    padding: 80px 20px 60px;
    background-color: #fef9f5;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 18px;
    color: #7f8c8d;
}

/* Story Section */
.story-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.story-section img {
    border-radius: 8px;
    margin-bottom: 40px;
    background-color: #e8dfd3;
}

.story-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.story-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

/* Values Section */
.values-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    gap: 30px;
}

.value-card {
    flex: 1;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #e67e22;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #34495e;
}

@media (max-width: 968px) {
    .values-grid {
        flex-direction: column;
    }
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.team-image {
    flex: 1;
    background-color: #e8dfd3;
    border-radius: 8px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

/* Approach Section */
.approach-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.approach-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 24px;
    color: #2c3e50;
}

.approach-section > p {
    text-align: center;
    font-size: 16px;
    color: #34495e;
    margin-bottom: 60px;
}

.approach-steps {
    display: flex;
    gap: 40px;
}

.step {
    flex: 1;
    text-align: center;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #e67e22;
}

.step p {
    font-size: 15px;
    line-height: 1.7;
    color: #34495e;
}

@media (max-width: 768px) {
    .approach-steps {
        flex-direction: column;
    }
}

/* CTA Section */
.cta-section-alt {
    padding: 100px 20px;
    background-color: #e67e22;
    text-align: center;
}

.cta-section-alt h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 16px;
}

.cta-section-alt p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 32px;
}

.cta-section-alt .btn-large {
    background-color: #ffffff;
    color: #e67e22;
}

.cta-section-alt .btn-large:hover {
    background-color: #ecf0f1;
}

/* Services Detailed */
.services-detailed {
    padding: 80px 0;
    background-color: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8dfd3;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 20px;
}

.price-detail {
    font-size: 14px;
    color: #7f8c8d;
    font-weight: 400;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #2c3e50;
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-detail-content li {
    margin-bottom: 8px;
    color: #34495e;
}

@media (max-width: 968px) {
    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        gap: 30px;
    }
}

/* Service Info Section */
.service-info-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.service-info-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.info-content h3 {
    font-size: 22px;
    margin: 32px 0 16px;
    color: #2c3e50;
}

.info-content h3:first-child {
    margin-top: 0;
}

.info-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 16px;
}

/* Contact Section */
.contact-split-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #e67e22;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.contact-detail .note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 8px;
}

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

.contact-image-block img {
    border-radius: 8px;
    background-color: #e8dfd3;
    margin-bottom: 20px;
}

.contact-note {
    padding: 20px;
    background-color: #fef9f5;
    border-radius: 6px;
    border-left: 4px solid #e67e22;
}

.contact-note p {
    font-size: 14px;
    color: #34495e;
    margin: 0;
}

@media (max-width: 968px) {
    .contact-grid {
        flex-direction: column;
    }
}

/* Contact FAQ */
.contact-faq-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.contact-faq-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.faq-item {
    margin-bottom: 32px;
    padding: 24px;
    background-color: #ffffff;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #34495e;
    margin: 0;
}

/* Map Placeholder */
.map-placeholder-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.map-placeholder {
    height: 400px;
    background-color: #ecf0f1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    color: #7f8c8d;
    font-size: 16px;
}

/* Thanks Page */
.thanks-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 40px;
}

.service-confirmation {
    padding: 24px;
    background-color: #fef9f5;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #2c3e50;
}

.thanks-next-steps {
    margin: 60px 0;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.step-list {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.step-item {
    flex: 0 0 250px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: #e67e22;
    color: #ffffff;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-item p {
    font-size: 15px;
    color: #34495e;
}

@media (max-width: 768px) {
    .step-list {
        flex-direction: column;
    }
}

.thanks-image {
    margin: 60px 0;
}

.thanks-image img {
    border-radius: 8px;
    background-color: #e8dfd3;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .thanks-actions {
        flex-direction: column;
    }
}

.thanks-contact-info {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #ecf0f1;
}

.thanks-contact-info p {
    font-size: 15px;
    color: #7f8c8d;
}

.email-display {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 600;
    margin-top: 8px;
}

/* Legal Pages */
.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-intro {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 26px;
    margin: 40px 0 16px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #34495e;
}

.legal-page p {
    font-size: 15px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0 16px 24px;
}

.legal-page li {
    font-size: 15px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 8px;
}

.legal-page a {
    color: #3498db;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #ecf0f1;
    font-size: 14px;
    color: #7f8c8d;
    text-align: center;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ecf0f1;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 14px;
    color: #34495e;
}