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

:root {
    --primary-color: #2d5f3f;
    --secondary-color: #7a9b7e;
    --accent-color: #d4a574;
    --background-color: #f9f7f4;
    --text-color: #2c2c2c;
    --light-gray: #e8e6e3;
    --white: #ffffff;
    --border-radius: 8px;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--background-color);
    font-size: 18px;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px;
}

.header-minimal {
    background-color: var(--white);
    border-bottom: 1px solid var(--light-gray);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.brand {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
}

.nav-minimal {
    display: flex;
    gap: 24px;
}

.nav-minimal a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-minimal a:hover {
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 12px;
    color: var(--secondary-color);
    background-color: var(--background-color);
    padding: 4px 12px;
    border-radius: 4px;
    border: 1px solid var(--light-gray);
}

.editorial-flow {
    padding-bottom: 80px;
}

.hero-editorial {
    margin-top: 0;
}

.hero-image-container {
    width: 100%;
    margin-bottom: 48px;
}

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

.headline-large {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 400;
}

.intro-text {
    font-size: 22px;
    line-height: 1.6;
    color: var(--secondary-color);
    margin-bottom: 32px;
}

.content-section {
    margin-top: 64px;
}

.content-section h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 400;
}

.content-section h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
    font-weight: 400;
}

.content-section p {
    margin-bottom: 24px;
}

.inline-image {
    margin: 48px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.quote-section {
    margin: 48px 0;
    padding: 32px;
    background-color: var(--white);
    border-left: 4px solid var(--accent-color);
    font-style: italic;
}

.quote-section p {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 12px;
}

.quote-section cite {
    display: block;
    font-size: 16px;
    color: var(--secondary-color);
    font-style: normal;
    margin-top: 12px;
}

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

.btn-text-link {
    display: inline-block;
    color: var(--primary-color);
    font-size: 20px;
    text-decoration: none;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 4px;
    transition: all 0.3s;
}

.btn-text-link:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.testimonial-inline {
    margin: 48px 0;
    padding: 32px;
    background-color: var(--white);
    border-radius: var(--border-radius);
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 16px;
}

.testimonial-author {
    font-size: 16px;
    color: var(--secondary-color);
}

.services-editorial {
    margin-top: 64px;
}

.service-card {
    margin-bottom: 64px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.service-image {
    width: 100%;
}

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

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
    margin-top: 0;
}

.service-content p {
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 8px 0 8px 28px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-price {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 24px 0;
}

.btn-select-service {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    font-size: 18px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.form-section {
    margin-top: 64px;
    padding: 48px 32px;
    background-color: var(--white);
    border-radius: var(--border-radius);
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
    margin-top: 0;
}

.contact-form {
    margin-top: 32px;
}

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

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 16px;
    font-family: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 16px 48px;
    font-size: 18px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.disclaimer-section {
    margin-top: 80px;
    padding: 32px;
    background-color: var(--light-gray);
    border-radius: var(--border-radius);
}

.disclaimer-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.disclaimer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

.references-section {
    margin-top: 64px;
    padding: 32px;
    background-color: var(--white);
    border-radius: var(--border-radius);
}

.references-section h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.references-list {
    list-style: decimal;
    padding-left: 24px;
}

.references-list li {
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.references-list a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.references-list a:hover {
    border-bottom-color: var(--primary-color);
}

.footer {
    background-color: var(--primary-color);
    color: var(--white);
    margin-top: 80px;
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 32px;
}

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 2px solid var(--light-gray);
    padding: 24px;
    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;
    flex-wrap: wrap;
    gap: 16px;
}

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

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.btn-cookie {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-cookie:hover {
    background-color: var(--secondary-color);
}

.btn-cookie-reject {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--light-gray);
}

.btn-cookie-reject:hover {
    background-color: var(--light-gray);
}

.page-header {
    margin-top: 48px;
}

.page-header h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
    font-weight: 400;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 32px;
}

.contact-info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.6;
}

.content-spacer {
    height: 48px;
}

.thanks-container {
    text-align: center;
    padding: 48px 0;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.simple-list {
    list-style: none;
    margin: 24px 0;
}

.simple-list li {
    padding: 8px 0;
}

.simple-list a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.simple-list a:hover {
    border-bottom-color: var(--primary-color);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 8px;
    color: var(--text-color);
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 32px;
}

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

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-minimal {
        flex-direction: column;
        gap: 12px;
    }

    .headline-large {
        font-size: 32px;
    }

    .intro-text {
        font-size: 18px;
    }

    .content-section h2 {
        font-size: 26px;
    }

    .service-price {
        font-size: 28px;
    }

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

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

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie,
    .btn-cookie-reject {
        flex: 1;
    }
}