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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    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: 20px;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #1d4739;
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

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

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

.logo {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

.ad-label {
    font-size: 12px;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 5px 10px;
    background-color: var(--bg-light);
}

.editorial-container {
    max-width: 1400px;
    margin: 0 auto;
}

.story-flow {
    padding: 60px 0;
}

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

.article-hero {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: var(--bg-light);
}

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

.hero-text-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    max-width: 600px;
}

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    font-style: italic;
}

h1 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 30px;
    color: var(--text-dark);
}

h2 {
    font-size: 28px;
    line-height: 1.4;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

h4 {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.intro-section p {
    margin-bottom: 25px;
}

.inline-image-block {
    margin: 50px 0;
}

.inline-image-block img {
    width: 100%;
    height: auto;
    display: block;
    background-color: var(--bg-light);
    object-fit: cover;
}

.image-caption {
    font-size: 15px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 10px;
    text-align: center;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 15px 35px;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1d4739;
}

.benefits-list {
    margin: 30px 0;
    padding-left: 25px;
}

.benefits-list li {
    margin-bottom: 15px;
}

.testimonial-inline {
    margin: 50px 0;
    padding: 30px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
}

.testimonial-inline blockquote {
    font-style: italic;
}

.testimonial-inline p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-inline footer {
    font-style: normal;
    color: var(--text-light);
    font-size: 16px;
}

.cta-section {
    margin: 60px 0;
    padding: 50px;
    background-color: var(--bg-light);
}

.cta-section h3 {
    margin-top: 0;
}

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

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-family: inherit;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
}

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

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 15px 40px;
    font-size: 18px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #6f5838;
}

.disclaimer-section {
    margin: 60px 0;
    padding: 30px;
    background-color: #fef9f3;
    border: 1px solid var(--border-color);
}

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

.references-section {
    margin: 40px 0;
}

.references-list {
    padding-left: 25px;
}

.references-list li {
    margin-bottom: 10px;
    font-size: 14px;
}

.references-list a {
    color: var(--primary-color);
    word-break: break-all;
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 50px 0 20px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    margin-bottom: 15px;
    color: var(--accent-color);
}

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

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

.footer-section a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 16px;
}

.footer-section a:hover {
    color: var(--accent-color);
}

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

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

.services-list {
    margin: 50px 0;
}

.service-item {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
    align-items: flex-start;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-wrapper {
    flex: 0 0 400px;
}

.service-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    background-color: var(--bg-light);
    object-fit: cover;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    margin-top: 0;
}

.service-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.service-content li {
    margin-bottom: 10px;
}

.service-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-top: 20px;
}

.contact-info-section {
    margin: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-detail h2 {
    margin-top: 0;
    font-size: 22px;
}

.faq-section {
    margin: 40px 0;
}

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

.faq-item h3 {
    margin-top: 0;
    font-size: 20px;
}

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

.thanks-message {
    text-align: left;
}

.legal-content h1 {
    margin-bottom: 10px;
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    margin-top: 40px;
}

.legal-content h3 {
    margin-top: 25px;
}

.legal-content ul {
    padding-left: 25px;
    margin: 15px 0;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid var(--border-color);
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: bold;
}

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

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

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 24px;
    }

    .intro-paragraph {
        font-size: 20px;
    }

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

    .nav-links {
        justify-content: center;
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
    }

    .service-image-wrapper {
        flex: 1;
        width: 100%;
    }

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

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

    .cta-section {
        padding: 30px 20px;
    }
}