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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #2c5f2d;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3a1b;
}

ul {
    list-style-position: inside;
}

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

.header-magazine {
    background-color: #fff;
    border-bottom: 2px solid #2c5f2d;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
}

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

.nav-horizontal a {
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-horizontal a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2c5f2d;
    transition: width 0.3s ease;
}

.nav-horizontal a:hover::after {
    width: 100%;
}

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

.hero-image-bg {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    max-width: 800px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    color: #fff;
    max-width: 600px;
}

.container-magazine {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.col-main {
    flex: 1 1 700px;
}

.col-sidebar {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

.intro-columns {
    padding: 60px 0;
}

.intro-columns h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.intro-columns p {
    margin-bottom: 15px;
}

.info-card {
    padding: 30px;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.info-card ul {
    list-style: none;
}

.info-card li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.info-card li:last-child {
    border-bottom: none;
}

.checklist {
    list-style: none;
}

.checklist li::before {
    content: '✓ ';
    color: #2c5f2d;
    font-weight: bold;
    margin-right: 8px;
}

.services-grid-magazine {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.section-title-centered {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #2c5f2d;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card-large {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-card-large .service-image {
    flex: 1 1 500px;
    min-height: 350px;
    background-size: cover;
    background-position: center;
}

.service-card-large .service-content {
    flex: 1 1 400px;
    padding: 40px;
}

.service-card-medium {
    flex: 1 1 calc(50% - 15px);
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-card-medium .service-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-card-medium .service-content {
    padding: 30px;
}

.service-card-small {
    flex: 1 1 calc(33.333% - 20px);
    background-color: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

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

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

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

.form-section-inline h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
    color: #2c5f2d;
}

.form-section-inline > .container-narrow > p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.contact-form-modern {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-primary {
    background-color: #2c5f2d;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
}

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

.btn-secondary {
    background-color: #fff;
    color: #2c5f2d;
    padding: 12px 30px;
    border: 2px solid #fff;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: transparent;
    color: #fff;
}

.btn-secondary-outline {
    background-color: transparent;
    color: #2c5f2d;
    padding: 12px 30px;
    border: 2px solid #2c5f2d;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary-outline:hover {
    background-color: #2c5f2d;
    color: #fff;
}

.benefits-asymmetric {
    padding: 80px 0;
}

.benefit-row,
.benefit-row-reverse {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.benefit-row-reverse {
    flex-direction: row-reverse;
}

.benefit-text {
    flex: 1 1 400px;
}

.benefit-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.benefit-image {
    flex: 1 1 500px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.cta-sticky-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.cta-box {
    text-align: center;
    padding: 60px 40px;
    border-radius: 8px;
}

.cta-box h3 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 30px;
}

.footer-magazine {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 20px 20px;
}

.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 250px;
}

.footer-col h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
}

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

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

.footer-col a {
    color: #ccc;
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.disclaimer-footer {
    font-size: 12px;
    color: #999;
    margin-top: 20px;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #2c5f2d;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 500px;
    margin: 0;
}

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

.btn-accept {
    background-color: #2c5f2d;
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.btn-reject {
    background-color: #f0f0f0;
    color: #333;
    padding: 10px 25px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-reject:hover {
    background-color: #e0e0e0;
}

.page-header-simple {
    padding: 60px 0 40px;
    background-color: #f9f9f9;
}

.page-header-simple h1 {
    font-size: 42px;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.about-content {
    padding: 60px 0;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.about-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.about-content p {
    margin-bottom: 15px;
}

.image-inline {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin: 30px 0;
}

.benefits-list {
    list-style: none;
    margin: 20px 0;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.benefits-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail-reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1 1 500px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #333;
}

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

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

.service-detail-content ul li {
    margin-bottom: 8px;
}

.service-detail-image {
    flex: 1 1 450px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.price-detail {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    margin-top: 25px;
}

.cta-bottom {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.cta-bottom h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.cta-bottom p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

.contact-content {
    padding: 60px 0;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info-section {
    flex: 1 1 450px;
}

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c5f2d;
}

.contact-block {
    margin-bottom: 30px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c5f2d;
}

.contact-block p {
    color: #666;
    line-height: 1.8;
}

.contact-image-section {
    flex: 1 1 500px;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.additional-info {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.additional-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.additional-info p {
    margin-bottom: 15px;
}

.preparation-list {
    margin: 20px 0;
    padding-left: 20px;
}

.preparation-list li {
    margin-bottom: 12px;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #666;
}

.thanks-service-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-weight: 600;
    color: #2c5f2d;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 38px;
    color: #2c5f2d;
    margin-bottom: 10px;
}

.legal-content h2 {
    font-size: 26px;
    color: #2c5f2d;
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 20px;
    color: #333;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.last-updated {
    font-size: 14px;
    color: #999;
    margin-bottom: 30px;
}

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

    .hero-overlay p {
        font-size: 16px;
    }

    .col-sidebar {
        flex: 1 1 100%;
    }

    .service-card-medium,
    .service-card-small {
        flex: 1 1 100%;
    }

    .nav-horizontal {
        width: 100%;
        justify-content: center;
    }

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

    .benefit-row,
    .benefit-row-reverse {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}