* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #7f8c8d;
    --accent-color: #c0925f;
    --text-color: #34495e;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e1e4e8;
    --success-color: #27ae60;
    --error-color: #e74c3c;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-color);
    line-height: 1.8;
    font-size: 18px;
    background: var(--white);
}

.ad-disclosure {
    background: var(--light-bg);
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--secondary-color);
    border-bottom: 1px solid var(--border-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

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

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

.hero-editorial {
    padding: 80px 0 60px;
    background: var(--light-bg);
}

.hero-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 30px 50px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 400;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hero-image {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.intro-narrative {
    padding: 80px 0;
}

.intro-narrative p {
    margin-bottom: 30px;
    font-size: 19px;
}

.inline-image {
    margin: 50px 0;
    background: var(--light-bg);
    padding: 15px;
    border-radius: 4px;
}

.inline-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
}

.inline-image figcaption {
    margin-top: 15px;
    font-size: 15px;
    color: var(--secondary-color);
    font-style: italic;
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.services-preview {
    padding: 80px 0;
    background: var(--white);
}

.services-preview h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 400;
}

.services-preview p {
    margin-bottom: 40px;
    font-size: 19px;
}

.service-cards {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 60px;
}

.service-card {
    background: var(--light-bg);
    padding: 35px;
    border-radius: 4px;
    border-left: 4px solid var(--accent-color);
}

.service-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 25px;
    background-color: var(--border-color);
}

.service-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 400;
}

.service-card p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.7;
}

.service-card .price {
    display: block;
    font-size: 24px;
    color: var(--accent-color);
    font-weight: 600;
    margin: 20px 0 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.inline-cta {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-bottom: 2px solid var(--accent-color);
    transition: opacity 0.3s ease;
}

.inline-cta:hover {
    opacity: 0.7;
}

.trust-building {
    padding: 80px 0;
    background: var(--light-bg);
}

.trust-building h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 400;
}

.trust-building p {
    margin-bottom: 30px;
    font-size: 19px;
}

.testimonial {
    margin: 50px 0;
    padding: 40px;
    background: var(--white);
    border-left: 4px solid var(--accent-color);
    font-size: 20px;
    font-style: italic;
    line-height: 1.7;
}

.testimonial cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: var(--secondary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-preview {
    padding: 80px 0;
}

.contact-preview h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 400;
}

.contact-preview p {
    margin-bottom: 35px;
    font-size: 19px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 4px;
    transition: background 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-button:hover {
    background: #a67b4d;
}

.booking-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.booking-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 400;
}

.booking-section > .narrow-content > p {
    margin-bottom: 40px;
    font-size: 19px;
}

.booking-form {
    margin-top: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--primary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.submit-button {
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #a67b4d;
}

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 50px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

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

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
}

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-bottom {
    background: #1a252f;
    padding: 20px 40px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 25px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cookie-accept {
    background: var(--accent-color);
    color: var(--white);
}

.cookie-accept:hover {
    opacity: 0.85;
}

.cookie-reject {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.cookie-reject:hover {
    opacity: 0.85;
}

.page-header {
    padding: 80px 0 50px;
    background: var(--light-bg);
}

.page-header h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 400;
}

.about-intro {
    padding: 80px 0;
}

.about-intro p {
    margin-bottom: 30px;
    font-size: 19px;
}

.about-image {
    margin: 50px 0;
    background: var(--light-bg);
    padding: 15px;
    border-radius: 4px;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
    background-color: var(--border-color);
}

.our-approach {
    padding: 80px 0;
    background: var(--light-bg);
}

.our-approach h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 400;
}

.our-approach p {
    margin-bottom: 30px;
    font-size: 19px;
}

.team-background {
    padding: 80px 0;
}

.team-background h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 400;
}

.team-background p {
    margin-bottom: 30px;
    font-size: 19px;
}

.our-values {
    padding: 80px 0;
    background: var(--light-bg);
}

.our-values h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 400;
}

.our-values h3 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 400;
}

.our-values p {
    margin-bottom: 20px;
    font-size: 19px;
}

.why-history-matters {
    padding: 80px 0;
}

.why-history-matters h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 400;
}

.why-history-matters p {
    margin-bottom: 30px;
    font-size: 19px;
}

.collaboration-invite {
    padding: 80px 0;
    background: var(--light-bg);
}

.collaboration-invite h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 400;
}

.collaboration-invite p {
    margin-bottom: 35px;
    font-size: 19px;
}

.contact-info {
    padding: 80px 0;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 400;
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 400;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.8;
}

.email-display {
    color: var(--text-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.contact-image {
    margin: 50px 0;
    background: var(--light-bg);
    padding: 15px;
    border-radius: 4px;
}

.contact-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
    background-color: var(--border-color);
}

.how-to-reach {
    padding: 80px 0;
    background: var(--light-bg);
}

.how-to-reach h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 400;
}

.how-to-reach h3 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 400;
}

.how-to-reach p {
    margin-bottom: 25px;
    font-size: 19px;
}

.response-expectations {
    padding: 80px 0;
}

.response-expectations h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 400;
}

.response-expectations p {
    margin-bottom: 25px;
    font-size: 19px;
}

.thanks-page {
    padding: 100px 0;
    min-height: 60vh;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 400;
}

.thanks-message {
    font-size: 22px;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.thanks-details {
    margin-bottom: 50px;
}

.thanks-details p {
    margin-bottom: 25px;
    font-size: 18px;
}

.next-steps {
    margin-bottom: 50px;
    padding: 35px;
    background: var(--light-bg);
    border-radius: 4px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 400;
}

.next-steps ol {
    padding-left: 25px;
}

.next-steps li {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.secondary-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--white);
    color: var(--accent-color);
    text-decoration: none;
    font-size: 17px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border-radius: 4px;
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.secondary-button:hover {
    background: var(--accent-color);
    color: var(--white);
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 400;
}

.legal-page h2 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 400;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 400;
}

.legal-page h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 400;
}

.legal-page p {
    margin-bottom: 20px;
    font-size: 17px;
    line-height: 1.8;
}

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

.legal-page li {
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.7;
}

.legal-page em {
    color: var(--secondary-color);
    font-size: 15px;
}

.no-link {
    color: var(--text-color);
    text-decoration: none;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail {
    padding: 80px 0;
}

.service-detail:nth-child(even) {
    background: var(--light-bg);
}

.service-detail h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 400;
}

.service-detail h3 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 400;
}

.service-detail p {
    margin-bottom: 25px;
    font-size: 19px;
}

.service-detail ul {
    margin-bottom: 30px;
    padding-left: 30px;
}

.service-detail li {
    margin-bottom: 12px;
    font-size: 18px;
    line-height: 1.7;
}

.service-image {
    margin: 40px 0;
    background: var(--light-bg);
    padding: 15px;
    border-radius: 4px;
}

.service-detail:nth-child(even) .service-image {
    background: var(--white);
}

.service-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
    background-color: var(--border-color);
}

.pricing-box {
    margin: 40px 0;
    padding: 30px;
    background: var(--white);
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-detail:nth-child(even) .pricing-box {
    background: var(--light-bg);
}

.price-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price-value {
    font-size: 32px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price-note {
    font-size: 15px;
    color: var(--secondary-color);
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

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

    .lead-text {
        font-size: 20px;
    }

    h2 {
        font-size: 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .thanks-actions a {
        text-align: center;
    }
}