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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 44, 44, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

.btn-cookie.accept {
    background-color: #6b8e4e;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #5a7a42;
}

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

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

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover {
    color: #6b8e4e;
}

.ad-label {
    font-size: 11px;
    color: #999;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    white-space: nowrap;
}

.editorial-container {
    max-width: 100%;
    margin: 0 auto;
}

.editorial-hero {
    position: relative;
    height: 600px;
    margin-bottom: 80px;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #d4c5b9;
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 700px;
    text-align: center;
    padding: 0 30px;
}

.hero-text-overlay h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

.editorial-section {
    margin-bottom: 70px;
}

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

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

.narrow-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #4a4a4a;
}

.narrow-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 28px;
    font-weight: 400;
    color: #2c2c2c;
}

.image-inline {
    margin-top: 60px;
    margin-bottom: 60px;
}

.image-inline img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 2px;
    background-color: #e5dcd3;
}

figcaption {
    font-size: 14px;
    color: #888;
    margin-top: 12px;
    text-align: center;
    font-style: italic;
}

.cta-inline {
    margin: 40px 0;
    text-align: center;
}

.btn-text {
    display: inline-block;
    color: #6b8e4e;
    font-size: 17px;
    text-decoration: none;
    border-bottom: 2px solid #6b8e4e;
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.btn-text:hover {
    color: #5a7a42;
    border-bottom-color: #5a7a42;
}

.testimonial-inline {
    background-color: #f9f7f4;
    padding: 50px 0;
    margin-top: 70px;
    margin-bottom: 70px;
}

.testimonial-inline blockquote {
    border-left: 3px solid #6b8e4e;
    padding-left: 30px;
    font-style: italic;
    font-size: 19px;
    line-height: 1.7;
    color: #3a3a3a;
}

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

.service-cards-editorial {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 24px;
    background-color: #e5dcd3;
}

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

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

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #6b8e4e;
    margin-bottom: 20px;
    display: block;
}

.btn-select-service {
    padding: 14px 32px;
    background-color: #6b8e4e;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-select-service:hover {
    background-color: #5a7a42;
}

.btn-select-service.selected {
    background-color: #2c2c2c;
}

.form-section {
    background-color: #f9f7f4;
    padding: 60px 0;
    margin-top: 80px;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    font-size: 16px;
    font-family: 'Georgia', serif;
    background-color: #ffffff;
    color: #2c2c2c;
}

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

.form-group input[readonly] {
    background-color: #f0f0f0;
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px 48px;
    background-color: #6b8e4e;
    color: #ffffff;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    width: 100%;
}

.btn-submit:hover {
    background-color: #5a7a42;
}

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

.disclaimer-section {
    background-color: #fff8e7;
    padding: 40px 0;
    margin-top: 80px;
    border-top: 1px solid #e8d5a0;
    border-bottom: 1px solid #e8d5a0;
}

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

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

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6b8e4e;
}

.footer-info {
    font-size: 14px;
    color: #aaa;
}

.footer-info p {
    margin-bottom: 8px;
}

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

.page-container h1 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 400;
    color: #2c2c2c;
}

.page-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 500;
    color: #2c2c2c;
}

.page-container p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.page-container ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-container li {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #4a4a4a;
}

.contact-info {
    background-color: #f9f7f4;
    padding: 40px;
    margin-top: 40px;
    border-left: 3px solid #6b8e4e;
}

.contact-info h2 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 12px;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px 30px;
    text-align: center;
    background-color: #f9f7f4;
    border: 1px solid #e8e8e8;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #6b8e4e;
    font-weight: 400;
}

.thanks-container p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.thanks-container a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 36px;
    background-color: #6b8e4e;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.thanks-container a:hover {
    background-color: #5a7a42;
}

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

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

    .narrow-content h2 {
        font-size: 28px;
    }

    .nav-links {
        gap: 16px;
        font-size: 13px;
    }

    .ad-label {
        display: none;
    }

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

    .service-card img {
        height: 200px;
    }
}