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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}

.ad-notice {
    background-color: #f8d7da;
    color: #721c24;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: 500;
}

.main-nav {
    background-color: #2d5016;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 0;
}

.nav-menu a:hover {
    color: #a8d08d;
}

.hero-magazine {
    background-color: #fff;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    padding: 40px 30px;
}

.hero-main-story {
    flex: 2;
    position: relative;
    background-color: #e8f5e9;
    overflow: hidden;
}

.hero-main-story img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 500px;
}

.story-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 40px;
    color: #fff;
}

.story-overlay h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 800;
}

.lead {
    font-size: 20px;
    line-height: 1.4;
}

.hero-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quick-fact {
    background-color: #fff;
    padding: 30px;
    border-left: 4px solid #2d5016;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.quick-fact h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d5016;
}

.highlight-box {
    background-color: #2d5016;
    color: #fff;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.label {
    display: inline-block;
    background-color: #a8d08d;
    color: #2d5016;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.highlight-box h4 {
    font-size: 26px;
    margin-bottom: 10px;
}

.intro-columns {
    background-color: #f5f5f5;
    padding: 60px 30px;
}

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

.col-main {
    column-count: 2;
    column-gap: 50px;
    margin-bottom: 40px;
}

.col-main h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2d5016;
    column-span: all;
}

.col-main p {
    margin-bottom: 20px;
    font-size: 17px;
    text-align: justify;
}

.col-secondary {
    text-align: center;
}

.col-secondary img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.col-secondary figcaption {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.season-grid {
    padding: 80px 30px;
    background-color: #fff;
}

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

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

.season-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #fafafa;
    overflow: hidden;
    display: flex;
    border: 1px solid #e0e0e0;
}

.season-image {
    flex: 1;
    background-color: #e8f5e9;
}

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

.season-content {
    flex: 1;
    padding: 30px;
}

.season-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2d5016;
}

.season-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.task-list {
    list-style: none;
    padding-left: 0;
}

.task-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
}

.task-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: bold;
}

.services-preview {
    background-color: #f5f5f5;
    padding: 70px 30px;
}

.split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2d5016;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.highlight-item {
    background-color: #fff;
    padding: 20px;
    border-left: 3px solid #2d5016;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.highlight-item h4 {
    font-size: 20px;
    color: #2d5016;
}

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

.split-image {
    flex: 1;
    background-color: #e8f5e9;
}

.split-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary {
    display: inline-block;
    background-color: #2d5016;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #3d6b1f;
}

.form-section {
    background-color: #2d5016;
    padding: 80px 30px;
}

.form-container-magazine {
    max-width: 900px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 18px;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-family: inherit;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

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

.btn-submit:hover {
    background-color: #3d6b1f;
}

.trust-elements {
    padding: 70px 30px;
    background-color: #fff;
}

.trust-elements h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d5016;
}

.testimonials-magazine {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    background-color: #f5f5f5;
    padding: 35px;
    border-left: 4px solid #2d5016;
    font-style: italic;
}

.testimonial p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: #2d5016;
}

.main-footer {
    background-color: #1a2e0d;
    color: #fff;
    padding: 50px 30px 20px;
}

.footer-magazine {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #a8d08d;
}

.footer-col p {
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #a8d08d;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #3d6b1f;
    max-width: 1400px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    gap: 30px;
}

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

.cookie-content a {
    color: #a8d08d;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-accept:hover {
    background-color: #3d6b1f;
}

.btn-reject {
    background-color: #666;
    color: #fff;
}

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

@media (max-width: 768px) {
    .hero-grid {
        flex-direction: column;
    }

    .col-main {
        column-count: 1;
    }

    .season-card {
        flex-direction: column;
        flex: 1 1 100%;
    }

    .split-layout {
        flex-direction: column;
    }

    .testimonials-magazine {
        flex-direction: column;
    }

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

    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }

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

    .form-row {
        flex-direction: column;
    }
}