* {
    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: #f0f0f0;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 100;
}

.nav-brand {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

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

.nav-links a {
    color: #444;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.editorial-container {
    max-width: 740px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}

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

.hero-content-narrow {
    text-align: center;
    margin-bottom: 40px;
}

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

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

.hero-image-inline {
    margin-top: 40px;
    background-color: #e8e8e8;
}

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

.story-section {
    margin: 50px 0;
}

.story-text h2 {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.inline-cta-box {
    background-color: #f5f1ed;
    padding: 30px;
    margin: 50px 0;
    text-align: center;
    border-left: 4px solid #8b6f47;
}

.cta-text {
    font-size: 19px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.cta-inline {
    display: inline-block;
    background-color: #8b6f47;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    font-size: 16px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #725a38;
}

.visual-break {
    margin: 60px 0;
    background-color: #e8e8e8;
}

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

.image-caption {
    font-size: 14px;
    color: #666;
    text-align: center;
    padding: 12px 0;
    font-style: italic;
}

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

.service-card {
    margin-bottom: 50px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    background-color: #e8e8e8;
}

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

.service-info {
    padding: 30px;
}

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

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #444;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    font-size: 15px;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: bold;
}

.service-price {
    font-size: 22px;
    font-weight: 600;
    color: #8b6f47;
    margin: 20px 0 15px;
}

.select-service-btn {
    background-color: #2c2c2c;
    color: #fff;
    padding: 12px 24px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

.testimonial-inline {
    margin: 50px 0;
    padding: 40px 30px;
    background-color: #f9f7f4;
    border-left: 3px solid #8b6f47;
}

.testimonial-inline blockquote {
    font-size: 18px;
    line-height: 1.6;
    font-style: italic;
    color: #3a3a3a;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 15px;
    font-style: normal;
    color: #666;
}

.form-section {
    margin: 60px 0;
}

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

.form-intro h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 17px;
    color: #555;
}

.editorial-form {
    background-color: #fff;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

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

.form-group label {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
    color: #2c2c2c;
    font-weight: 500;
}

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

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

.form-submit {
    background-color: #8b6f47;
    color: #fff;
    padding: 14px 32px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #725a38;
}

.disclaimer-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
}

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

.site-footer {
    background-color: #2c2c2c;
    color: #ccc;
    padding: 50px 40px 30px;
}

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(30, 30, 30, 0.96);
    color: #fff;
    padding: 25px;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.3);
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
    min-width: 300px;
}

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

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

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

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

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

.cookie-btn.reject {
    background-color: #555;
    color: #fff;
}

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

.inline-image {
    margin: 40px 0;
    background-color: #e8e8e8;
}

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

.contact-info-section {
    margin: 60px 0;
}

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

.contact-details h2 {
    font-size: 30px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #444;
}

.contact-image {
    margin-top: 40px;
    background-color: #e8e8e8;
}

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

.legal-page .legal-header {
    margin-bottom: 50px;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 15px;
    color: #666;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-section p,
.legal-section ul,
.legal-section li {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.legal-section ul {
    margin-left: 25px;
    margin-top: 15px;
}

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

.legal-section a {
    color: #8b6f47;
    text-decoration: underline;
}

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

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

.thanks-box {
    background-color: #f9f7f4;
    padding: 30px;
    border: 1px solid #e0e0e0;
}

.thanks-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.thanks-box strong {
    color: #1a1a1a;
}

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

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

    .editorial-container {
        padding: 40px 20px;
    }

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

    .hero-lead {
        font-size: 17px;
    }

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

    .story-text p {
        font-size: 16px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}