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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e27;
    background-color: #fafaf8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0d8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d5016;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 5px 12px;
    background-color: #f5f5f0;
    border-radius: 4px;
}

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

.nav a {
    color: #2c3e27;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #2d5016;
}

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

.hero-editorial {
    width: 100%;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    line-height: 1.2;
}

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

.text-block {
    margin-bottom: 50px;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #1a3a1a;
    margin-bottom: 30px;
    font-weight: 500;
}

.text-block p {
    font-size: 18px;
    margin-bottom: 20px;
}

.text-block h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a3a1a;
    margin-bottom: 25px;
    margin-top: 40px;
}

.inline-image {
    width: 100%;
    margin: 50px 0;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2d5016;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    transition: background-color 0.3s ease;
}

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

.services-preview {
    margin: 70px 0;
}

.services-preview h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1a3a1a;
    margin-bottom: 50px;
    text-align: center;
}

.service-list-editorial {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item-editorial {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a3a1a;
    margin-bottom: 12px;
}

.service-info p {
    font-size: 17px;
    color: #3a4a35;
    margin-bottom: 10px;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #2d5016;
}

.cta-section-full {
    background-color: #f5f5f0;
    padding: 60px 40px;
    border-radius: 12px;
    margin: 70px 0;
}

.cta-section-full h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a3a1a;
    text-align: center;
    margin-bottom: 20px;
}

.cta-section-full > p {
    font-size: 18px;
    text-align: center;
    color: #3a4a35;
    margin-bottom: 40px;
}

.form-editorial {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #d0d0c8;
    border-radius: 6px;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5016;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2d5016;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1f3a0f;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    font-style: italic;
    line-height: 1.6;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0d8;
}

.footer {
    background-color: #2c3e27;
    color: #d0d0c8;
    padding: 60px 0 30px;
}

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

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

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

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

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

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

.footer-section ul li a {
    color: #d0d0c8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3a4a35;
}

.footer-bottom p {
    font-size: 14px;
    color: #a0a098;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e27;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.btn-accept {
    background-color: #2d5016;
    color: #ffffff;
}

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.8;
}

.thanks-page {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 12px;
}

.thanks-page h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 25px;
}

.thanks-page p {
    font-size: 19px;
    color: #3a4a35;
    margin-bottom: 20px;
}

.services-page-layout {
    padding: 80px 0;
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
}

.services-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1a3a1a;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 20px;
    color: #3a4a35;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card-content {
    padding: 35px;
}

.service-card-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a3a1a;
    margin-bottom: 15px;
}

.service-card-content p {
    font-size: 17px;
    color: #3a4a35;
    margin-bottom: 20px;
}

.service-card-content .price {
    font-size: 24px;
    font-weight: 700;
    color: #2d5016;
}

.about-page-layout {
    padding: 80px 0;
}

.about-hero {
    text-align: center;
    margin-bottom: 70px;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1a3a1a;
    margin-bottom: 25px;
}

.about-hero p {
    font-size: 21px;
    color: #3a4a35;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.about-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a3a1a;
    margin-bottom: 25px;
}

.about-section p {
    font-size: 18px;
    color: #3a4a35;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    width: 100%;
    margin: 50px 0;
    border-radius: 10px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-page-layout {
    padding: 80px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1a3a1a;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 19px;
    color: #3a4a35;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a3a1a;
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2d5016;
    margin-bottom: 8px;
}

.contact-item p {
    font-size: 17px;
    color: #3a4a35;
    line-height: 1.6;
}

.legal-page {
    padding: 80px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #1a3a1a;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a3a1a;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content p {
    font-size: 17px;
    color: #3a4a35;
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 17px;
    color: #3a4a35;
    margin-bottom: 12px;
    line-height: 1.6;
}

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

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

    .hero-overlay h1 {
        font-size: 36px;
    }

    .lead-text {
        font-size: 19px;
    }

    .text-block h2 {
        font-size: 26px;
    }

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

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

    .services-header h1,
    .about-hero h1,
    .contact-header h1 {
        font-size: 36px;
    }
}