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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafaf8;
}

.ad-notice {
    background-color: #f4f4f2;
    color: #666;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0de;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e8e8e6;
    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: #2c2c2c;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

.editorial-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 40px 25px 80px;
}

.hero-editorial {
    margin-bottom: 50px;
}

.hero-image-wrapper {
    margin-bottom: 30px;
    background-color: #e8e8e6;
}

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

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.hero-text .lead {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
}

.narrative-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.text-block p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #3a3a3a;
}

.text-block h2 {
    font-size: 32px;
    margin: 50px 0 25px;
    font-weight: 400;
    color: #1a1a1a;
}

.text-block h3 {
    font-size: 24px;
    margin: 40px 0 20px;
    font-weight: 400;
    color: #2c2c2c;
}

.text-block em {
    font-style: italic;
}

.inline-image-block {
    margin: 50px 0;
    background-color: #f4f4f2;
}

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

.image-caption {
    padding: 15px 20px;
    font-size: 15px;
    color: #666;
    font-style: italic;
}

.insight-box {
    background-color: #f9f9f7;
    border-left: 4px solid #a67c52;
    padding: 30px;
    margin: 40px 0;
}

.insight-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c2c2c;
    font-weight: 600;
}

.insight-box p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

.insight-box a {
    color: #a67c52;
    text-decoration: none;
    font-weight: 600;
}

.insight-box a:hover {
    text-decoration: underline;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 40px;
    background-color: #2c2c2c;
    color: #fff;
}

.testimonial-inline blockquote {
    border: none;
}

.testimonial-inline p {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-inline cite {
    font-size: 16px;
    font-style: normal;
    color: #ccc;
}

.services-preview {
    margin: 60px 0;
}

.services-preview h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 400;
}

.service-card {
    margin-bottom: 50px;
    background-color: #fff;
    border: 1px solid #e8e8e6;
    padding: 0;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #e8e8e6;
}

.service-card h4 {
    font-size: 24px;
    margin: 25px 25px 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    margin: 0 25px 15px;
    color: #555;
}

.service-duration {
    font-size: 14px;
    color: #888;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #a67c52;
    margin: 20px 25px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.select-service-btn {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 15px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.cta-section {
    margin: 60px 0;
    padding: 40px;
    background-color: #f4f4f2;
    text-align: center;
}

.cta-section h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 400;
}

.cta-section p {
    font-size: 18px;
    color: #555;
}

.form-section {
    margin: 60px 0;
    padding: 50px 40px;
    background-color: #fff;
    border: 1px solid #e8e8e6;
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 400;
}

.form-container p {
    margin-bottom: 30px;
    font-size: 16px;
    color: #666;
}

#selected-service-display {
    color: #a67c52;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #2c2c2c;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #d0d0ce;
    font-size: 16px;
    font-family: Georgia, 'Times New Roman', serif;
    background-color: #fafaf8;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #a67c52;
    color: #fff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

.references-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #f9f9f7;
    border-top: 2px solid #e0e0de;
}

.references-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #2c2c2c;
}

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

.references-list li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

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

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

.disclaimer-box {
    margin: 50px 0;
    padding: 25px;
    background-color: #fff8e6;
    border-left: 4px solid #d4a76a;
}

.disclaimer-box p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.6;
}

.main-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 50px 30px 30px;
    margin-top: 80px;
}

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

.footer-column h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 25px;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 25px;
    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;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #a67c52;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

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

.cookie-btn.reject:hover {
    border-color: #888;
    color: #fff;
}

.thanks-message {
    max-width: 750px;
    margin: 80px auto;
    padding: 60px 40px;
    background-color: #fff;
    border: 1px solid #e8e8e6;
    text-align: center;
}

.thanks-message h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 400;
}

.thanks-message p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.thanks-message .service-name {
    color: #a67c52;
    font-weight: 600;
}

.back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background-color: #2c2c2c;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.back-link:hover {
    background-color: #1a1a1a;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin: 40px 0;
}

.contact-block {
    padding: 30px;
    background-color: #fff;
    border-left: 3px solid #a67c52;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2c2c2c;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 25px 80px;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: 600;
    color: #2c2c2c;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    font-weight: 600;
    color: #2c2c2c;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #3a3a3a;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 20px 30px;
    font-size: 17px;
    line-height: 1.7;
    color: #3a3a3a;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-content a {
    color: #a67c52;
    text-decoration: underline;
}

.legal-content strong {
    font-weight: 600;
    color: #2c2c2c;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }

    .editorial-content {
        padding: 30px 20px 60px;
    }

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

    .hero-text .lead {
        font-size: 18px;
    }

    .text-block h2 {
        font-size: 26px;
    }

    .text-block p {
        font-size: 17px;
    }

    .service-card h4 {
        font-size: 21px;
    }

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

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

    .legal-content {
        padding: 30px 20px 60px;
    }

    .legal-content h1 {
        font-size: 28px;
    }

    .legal-content h2 {
        font-size: 24px;
    }
}