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

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

.ad-disclosure {
    background-color: #f4e4d7;
    color: #7a5c3f;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #e0d0c0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e6e6e6;
}

.nav-logo {
    font-size: 24px;
    font-weight: 600;
    color: #5a3e2b;
}

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

.nav-links a {
    text-decoration: none;
    color: #5a3e2b;
    font-size: 16px;
    transition: color 0.3s;
}

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

.editorial-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 48px 24px;
}

.article-hero {
    position: relative;
    margin-bottom: 48px;
}

.hero-image-wrapper {
    width: 100%;
    background-color: #e8ddd0;
    border-radius: 4px;
    overflow: hidden;
}

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

.hero-text-overlay {
    margin-top: 32px;
}

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    color: #2c2c2c;
    font-weight: 400;
}

.content-block {
    margin-bottom: 48px;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
    font-style: italic;
    margin-bottom: 24px;
}

.content-block h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c2c2c;
    font-weight: 400;
}

.content-block p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.with-side-image {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.text-column {
    flex: 1;
}

.image-column {
    flex: 0 0 45%;
    background-color: #f0e8df;
    border-radius: 4px;
    overflow: hidden;
}

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

.with-side-image.reverse {
    flex-direction: row-reverse;
}

.centered {
    text-align: center;
}

.reference {
    color: #8b6f47;
    text-decoration: none;
    font-weight: 600;
}

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

.inline-cta {
    background-color: #f7f1eb;
    padding: 40px 32px;
    text-align: center;
    margin: 48px 0;
    border-left: 4px solid #8b6f47;
}

.inline-cta p {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.cta-link {
    display: inline-block;
    background-color: #5a3e2b;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #7a5c3f;
}

.full-width-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 4px;
    background-color: #e8ddd0;
}

.testimonial-inline {
    background-color: #ffffff;
    padding: 40px;
    border-left: 4px solid #d4c4b0;
    margin: 48px 0;
}

.testimonial-inline blockquote {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    font-style: italic;
}

.testimonial-inline cite {
    display: block;
    margin-top: 16px;
    font-size: 16px;
    color: #7a7a7a;
    font-style: normal;
}

.services-reveal {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 2px solid #e6e6e6;
}

.services-reveal h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: #2c2c2c;
    font-weight: 400;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #6a6a6a;
    margin-bottom: 40px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 48px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 32px 24px;
    width: 280px;
    text-align: center;
    border-radius: 4px;
    transition: box-shadow 0.3s;
}

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

.service-card.featured {
    border: 2px solid #8b6f47;
    position: relative;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c2c2c;
    font-weight: 500;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #6a6a6a;
    margin-bottom: 24px;
}

.price {
    font-size: 32px;
    color: #5a3e2b;
    margin-bottom: 24px;
    font-weight: 600;
}

.price-note {
    font-size: 16px;
    color: #7a7a7a;
    font-weight: 400;
}

.select-service {
    background-color: #5a3e2b;
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    margin-top: 48px;
    background-color: #f7f1eb;
    padding: 48px 32px;
    border-radius: 4px;
}

.form-container h2 {
    font-size: 28px;
    margin-bottom: 32px;
    text-align: center;
    color: #2c2c2c;
    font-weight: 400;
}

.order-form {
    max-width: 480px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #4a4a4a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d0c0b0;
    border-radius: 4px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

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

.selected-service-display {
    background-color: #ffffff;
    padding: 16px;
    margin-bottom: 24px;
    border-radius: 4px;
    font-size: 16px;
    color: #5a3e2b;
    min-height: 20px;
}

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

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

.submit-btn:disabled {
    background-color: #c0b0a0;
    cursor: not-allowed;
}

.disclaimer-section {
    margin-top: 64px;
    padding: 32px;
    background-color: #fef9f5;
    border: 1px solid #e8ddd0;
    border-radius: 4px;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.6;
    color: #7a7a7a;
    text-align: center;
}

.references-section {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e6e6e6;
}

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

.references-list {
    list-style-position: inside;
    font-size: 14px;
    line-height: 1.8;
    color: #6a6a6a;
}

.references-list li {
    margin-bottom: 12px;
}

.references-list a {
    color: #8b6f47;
    word-break: break-all;
}

.main-footer {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 48px 24px 24px;
    margin-top: 64px;
}

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

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

.footer-section p,
.footer-section ul {
    font-size: 14px;
    line-height: 1.8;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #4a4a4a;
    font-size: 14px;
    color: #a0a0a0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #5a3e2b;
    padding: 24px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    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: 24px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
}

.cookie-content a {
    color: #8b6f47;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #5a3e2b;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: #4a4a4a;
}

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

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

    .nav-links {
        gap: 16px;
    }

    .editorial-content {
        padding: 32px 16px;
    }

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

    .with-side-image,
    .with-side-image.reverse {
        flex-direction: column;
    }

    .image-column {
        flex: 1;
        width: 100%;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 320px;
    }

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

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