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

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

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

.nav-minimal {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: 1px;
}

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

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

.nav-links a:hover {
    color: #5a7a5a;
}

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

.hero-editorial {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    background-color: #d4d4d4;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #ffffff;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.6);
    max-width: 800px;
    padding: 0 20px;
}

.hero-text-overlay h1 {
    font-size: 48px;
    font-weight: normal;
    margin-bottom: 15px;
    line-height: 1.3;
}

.subtitle {
    font-size: 20px;
    font-style: italic;
    opacity: 0.95;
}

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

.intro-text {
    font-size: 22px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 30px;
    font-style: italic;
}

.content-narrow p {
    margin-bottom: 25px;
    font-size: 18px;
}

.content-narrow h2 {
    font-size: 32px;
    margin: 50px 0 25px 0;
    font-weight: normal;
    color: #2c2c2c;
}

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

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

.image-caption {
    display: block;
    padding: 15px 20px;
    font-size: 14px;
    color: #666;
    font-style: italic;
    text-align: center;
    background-color: #f5f5f5;
}

.quote-block {
    margin: 40px 0;
    padding: 30px 40px;
    background-color: #f9f9f9;
    border-left: 4px solid #5a7a5a;
}

.quote-block blockquote {
    font-size: 20px;
    font-style: italic;
    line-height: 1.6;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.quote-block cite {
    display: block;
    font-size: 15px;
    color: #666;
    font-style: normal;
}

.criteria-list {
    margin: 30px 0;
    padding-left: 0;
    list-style: none;
}

.criteria-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
}

.criteria-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #5a7a5a;
}

.services-preview {
    background-color: #f4f4f0;
    padding: 80px 0;
}

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

.service-card {
    background-color: #ffffff;
    padding: 35px;
    border: 1px solid #e0e0e0;
    transition: box-shadow 0.3s ease;
}

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

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

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-card .price {
    display: block;
    font-size: 28px;
    color: #5a7a5a;
    margin-bottom: 20px;
    font-weight: bold;
}

.cta-inline {
    background-color: #5a7a5a;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #4a6a4a;
}

.form-section {
    background-color: #ffffff;
    padding: 80px 0;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    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: #5a7a5a;
}

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

.submit-btn:hover {
    background-color: #4a6a4a;
}

.disclaimer-box {
    background-color: #fff9e6;
    padding: 30px;
    border-left: 3px solid #d4a024;
    margin-top: 60px;
}

.disclaimer-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.disclaimer-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.footer-editorial {
    background-color: #2c2c2c;
    color: #d0d0d0;
    padding: 60px 0 30px 0;
}

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

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

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

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 2000;
    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: 14px;
    line-height: 1.6;
    margin: 0;
}

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

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

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

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

.cookie-accept:hover {
    background-color: #4a6a4a;
}

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

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

.page-header {
    background-color: #5a7a5a;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: normal;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

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

.page-content h3 {
    font-size: 22px;
    margin: 30px 0 15px 0;
    color: #3a3a3a;
    font-weight: normal;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.page-content ul,
.page-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.7;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 40px;
    margin: 40px 0;
    border-left: 4px solid #5a7a5a;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-info strong {
    color: #2c2c2c;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.service-detail {
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.service-detail h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.service-detail .price-tag {
    font-size: 32px;
    color: #5a7a5a;
    font-weight: bold;
    margin: 20px 0;
    display: block;
}

.service-detail p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.thanks-container h1 {
    font-size: 38px;
    color: #5a7a5a;
    margin-bottom: 25px;
    font-weight: normal;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background-color: #5a7a5a;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.thanks-container a:hover {
    background-color: #4a6a4a;
}

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

    .subtitle {
        font-size: 16px;
    }

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

    .nav-container {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 20px;
    }

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

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

    .page-header {
        padding: 50px 20px;
    }

    .page-header h1 {
        font-size: 32px;
    }
}