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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

.btn-accept {
    background-color: #4a7c59;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3d6849;
}

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.ad-disclosure {
    background-color: #f4f4f4;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.nav-minimal {
    background-color: #ffffff;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

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

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

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

.editorial-main {
    background-color: #ffffff;
}

.story-flow {
    max-width: 100%;
}

.hero-editorial {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 16px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    opacity: 0.95;
}

.narrow-content {
    max-width: 680px;
    margin: 0 auto;
    padding: 80px 20px;
}

.intro-narrative .lead-text {
    font-size: 24px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 32px;
    font-weight: 400;
}

.intro-narrative p {
    margin-bottom: 24px;
    font-size: 18px;
}

.intro-narrative h2 {
    font-size: 36px;
    margin: 60px 0 32px 0;
    font-weight: 400;
    color: #1a1a1a;
}

.inline-image {
    margin: 48px 0;
    border-radius: 4px;
    background-color: #f0f0f0;
}

.services-inline {
    background-color: #f9f9f9;
}

.services-inline h2 {
    font-size: 36px;
    margin-bottom: 48px;
    font-weight: 400;
    color: #1a1a1a;
}

.service-story {
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid #e0e0e0;
}

.service-story:last-child {
    border-bottom: none;
}

.service-img {
    margin-bottom: 24px;
    border-radius: 4px;
    background-color: #e8e8e8;
}

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

.service-story p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #444;
}

.service-price {
    font-size: 22px;
    font-weight: 600;
    color: #4a7c59;
    margin: 24px 0 16px 0;
}

.btn-select-service {
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-narrative {
    background-color: #ffffff;
}

.trust-narrative h2 {
    font-size: 36px;
    margin-bottom: 48px;
    font-weight: 400;
    color: #1a1a1a;
}

.testimonial-inline {
    margin: 40px 0;
    padding: 32px;
    background-color: #f4f4f4;
    border-left: 4px solid #4a7c59;
}

.testimonial-inline p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 16px;
    color: #2c2c2c;
}

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

.form-narrative {
    background-color: #f9f9f9;
}

.form-narrative h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.form-narrative > .narrow-content > p {
    font-size: 18px;
    margin-bottom: 40px;
}

.editorial-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-display {
    background-color: #e8f5e9;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-size: 16px;
    color: #2c2c2c;
}

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

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

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

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

.btn-submit {
    padding: 16px 48px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.editorial-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 40px 40px;
}

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

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 500;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 500;
}

.footer-section p {
    font-size: 14px;
    color: #ccc;
}

.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: #ffffff;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid #333;
    font-size: 12px;
    color: #999;
    line-height: 1.6;
}

.thanks-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #4a7c59;
}

.thanks-content p {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.thanks-content .service-selected {
    font-weight: 600;
    color: #4a7c59;
}

.thanks-content a {
    display: inline-block;
    margin-top: 32px;
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.thanks-content a:hover {
    background-color: #1a1a1a;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
    }

    .narrow-content {
        padding: 40px 20px;
    }

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

    .intro-narrative h2,
    .services-inline h2,
    .trust-narrative h2,
    .form-narrative h2 {
        font-size: 28px;
    }

    .cookie-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }
}