* {
    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;
}

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #d35400;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-magazine {
    background-color: #fdfbf7;
    padding: 80px 30px;
}

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

.hero-text-column {
    flex: 1;
}

.hero-text-column h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.lead-text {
    font-size: 20px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
}

.cta-primary {
    display: inline-block;
    background-color: #d35400;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #a04000;
}

.hero-image-column {
    flex: 1;
}

.hero-image-column img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    background-color: #f5f5f5;
    object-fit: cover;
}

.intro-narrative {
    padding: 90px 30px;
    background-color: #ffffff;
}

.narrative-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.narrative-left {
    flex: 1;
}

.narrative-left img {
    width: 100%;
    border-radius: 8px;
    background-color: #f5f5f5;
    object-fit: cover;
}

.narrative-right {
    flex: 1.2;
}

.narrative-right h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.narrative-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.insight-block {
    background-color: #f9f5f0;
    padding: 80px 30px;
}

.insight-content {
    max-width: 1100px;
    margin: 0 auto;
}

.insight-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.insight-item {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.insight-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #d35400;
}

.insight-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.citation {
    color: #d35400;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.trust-building {
    padding: 90px 30px;
    background-color: #ffffff;
}

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

.trust-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.stats-layout {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 70px;
}

.stat-box {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #d35400;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
}

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

.testimonial {
    flex: 1;
    background-color: #fdfbf7;
    padding: 30px;
    border-left: 4px solid #d35400;
    font-style: italic;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.testimonial cite {
    font-style: normal;
    font-size: 14px;
    color: #777;
}

.services-magazine {
    padding: 90px 30px;
    background-color: #fdfbf7;
}

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

.services-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.services-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
}

.service-card img {
    width: 400px;
    height: 300px;
    background-color: #f5f5f5;
    object-fit: cover;
}

.service-info {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #d35400;
    margin-bottom: 20px;
    display: block;
}

.select-service {
    background-color: #d35400;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

.booking-form {
    background-color: #fdfbf7;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-group input:focus {
    outline: none;
    border-color: #d35400;
}

.submit-btn {
    width: 100%;
    background-color: #d35400;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.additional-info {
    padding: 80px 30px;
    background-color: #f9f5f0;
}

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

.info-container h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.info-columns {
    display: flex;
    gap: 40px;
}

.info-col {
    flex: 1;
}

.info-col h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #d35400;
}

.info-col p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

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

.footer-section ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #d35400;
}

.references {
    list-style: decimal;
    padding-left: 20px;
}

.references li {
    margin-bottom: 8px;
}

.references a {
    color: #ecf0f1;
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(0,0,0,0.2);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.2);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.page-header {
    background-color: #f9f5f0;
    padding: 60px 30px;
    text-align: center;
}

.header-content h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.header-subtext {
    font-size: 18px;
    color: #666;
}

.about-content {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

.about-intro {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.about-intro img {
    width: 500px;
    border-radius: 8px;
    background-color: #f5f5f5;
    object-fit: cover;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.philosophy-section {
    margin-bottom: 80px;
}

.philosophy-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

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

.philosophy-item {
    flex: 1;
    background-color: #fdfbf7;
    padding: 30px;
    border-radius: 8px;
}

.philosophy-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #d35400;
}

.philosophy-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.team-section {
    margin-bottom: 80px;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.team-description p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.values-section {
    margin-bottom: 80px;
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.values-layout {
    display: flex;
    gap: 40px;
}

.value-block {
    flex: 1;
    background-color: #f9f5f0;
    padding: 35px;
    border-radius: 8px;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #d35400;
}

.value-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.approach-section {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.approach-section img {
    width: 500px;
    border-radius: 8px;
    background-color: #f5f5f5;
    object-fit: cover;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.services-detailed {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

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

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

.service-image-left img {
    width: 500px;
    border-radius: 8px;
    background-color: #f5f5f5;
    object-fit: cover;
}

.service-details-right {
    flex: 1;
}

.service-details-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-details-right p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-details-right h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #d35400;
}

.service-details-right ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-details-right ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

.service-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
}

.service-duration,
.service-group {
    font-size: 14px;
    color: #777;
}

.service-pricing {
    margin-bottom: 25px;
}

.price-label {
    font-size: 16px;
    color: #555;
    margin-right: 10px;
}

.price-value {
    font-size: 36px;
    font-weight: 700;
    color: #d35400;
}

.booking-info {
    padding: 80px 30px;
    background-color: #fdfbf7;
}

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

.booking-container h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

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

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

.step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step p {
    font-size: 16px;
    color: #555;
}

.contact-content {
    padding: 80px 30px;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-main {
    flex: 2;
}

.contact-main h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #d35400;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 10px;
}

.non-clickable-email {
    font-weight: 600;
    color: #2c3e50;
}

.contact-note {
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.contact-side {
    flex: 1;
}

.info-box {
    background-color: #fdfbf7;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.info-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.faq-item {
    margin-bottom: 25px;
}

.faq-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #d35400;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.map-placeholder {
    background-color: #e9ecef;
    padding: 80px 30px;
    text-align: center;
}

.map-content p {
    font-size: 18px;
    color: #666;
}

.thanks-content {
    padding: 100px 30px;
    background-color: #fdfbf7;
    min-height: 60vh;
}

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

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

.thanks-lead {
    font-size: 22px;
    color: #555;
    margin-bottom: 40px;
}

.thanks-info {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.selected-service-info {
    background-color: #f9f5f0;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.selected-service-info p {
    margin: 0;
    font-size: 16px;
}

.thanks-next-steps {
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.steps-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    padding-left: 20px;
}

.steps-list li {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

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

.btn-primary {
    display: inline-block;
    background-color: #d35400;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #95a5a6;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.legal-content {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #d35400;
}

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

.legal-container ul,
.legal-container ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 10px;
}

.legal-container a {
    color: #d35400;
    text-decoration: none;
}

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

.legal-update {
    margin-top: 50px;
    font-size: 14px;
    color: #777;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-content-split,
    .narrative-container,
    .insight-grid,
    .stats-layout,
    .testimonials-inline,
    .info-columns,
    .footer-content,
    .philosophy-grid,
    .values-layout,
    .approach-section,
    .booking-steps,
    .contact-container {
        flex-direction: column;
    }

    .nav-links {
        gap: 20px;
    }

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

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

    .service-card img {
        width: 100%;
    }

    .service-full,
    .service-full.reverse {
        flex-direction: column;
    }

    .service-image-left img,
    .about-intro img,
    .approach-section img {
        width: 100%;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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