* {
    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: #ffffff;
}

header {
    background: linear-gradient(135deg, #2d5016 0%, #4a7c30 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
}

.ad-notice {
    font-size: 0.75rem;
    color: #d4edda;
    background: rgba(255,255,255,0.1);
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
}

.hero-section {
    background: #f8faf6;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    color: #2d5016;
    line-height: 1.2;
    max-width: 800px;
}

.hero-content p {
    font-size: 1.3rem;
    color: #546e7a;
    max-width: 700px;
}

.hero-image {
    width: 100%;
    max-width: 900px;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    background-color: #e8f5e3;
}

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

.section {
    padding: 4rem 0;
}

.section-alt {
    background: #f8faf6;
}

.section-dark {
    background: #2d5016;
    color: #ffffff;
}

.section-light {
    background: #ffffff;
}

.section-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #2d5016;
}

.section-dark .section-title {
    color: #ffffff;
}

.section-description {
    text-align: center;
    font-size: 1.15rem;
    max-width: 750px;
    margin: 0 auto 3rem;
    color: #546e7a;
    line-height: 1.7;
}

.section-dark .section-description {
    color: #d4edda;
}

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

.service-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-left: 4px solid #4a7c30;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-card h3 {
    font-size: 1.6rem;
    color: #2d5016;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4a7c30;
}

.service-card p {
    color: #546e7a;
    line-height: 1.6;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.about-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-block h3 {
    font-size: 1.8rem;
    color: #2d5016;
}

.about-image {
    width: 100%;
    height: 350px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #e8f5e3;
    margin-top: 1rem;
}

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

.form-section {
    background: linear-gradient(135deg, #4a7c30 0%, #2d5016 100%);
    padding: 4.5rem 0;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.form-container h2 {
    font-size: 2rem;
    color: #2d5016;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d5016;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn {
    background: #4a7c30;
    color: #ffffff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    width: 100%;
}

.btn:hover {
    background: #3a6225;
    transform: translateY(-2px);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-item {
    flex: 1 1 250px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.4rem;
    color: #2d5016;
    margin-bottom: 0.8rem;
}

.feature-item p {
    color: #546e7a;
    line-height: 1.5;
}

footer {
    background: #1a2f0e;
    color: #d4edda;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
    justify-content: space-between;
}

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

.footer-section h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: #d4edda;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 237, 218, 0.2);
    font-size: 0.9rem;
}

.contact-info {
    background: #f8faf6;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    color: #2d5016;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #546e7a;
    line-height: 1.6;
}

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

.legal-content h2 {
    color: #2d5016;
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: #2d5016;
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #546e7a;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #546e7a;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 47, 14, 0.97);
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1 1 300px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.2s;
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.cookie-accept {
    background: #4a7c30;
    color: #ffffff;
}

.cookie-reject {
    background: #ffffff;
    color: #2d5016;
}

.thanks-container {
    text-align: center;
    padding: 5rem 2rem;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thanks-icon {
    font-size: 5rem;
    color: #4a7c30;
    margin-bottom: 1.5rem;
}

.thanks-container h1 {
    font-size: 2.8rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #546e7a;
    max-width: 600px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-link {
    display: inline-block;
    background: #4a7c30;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.thanks-link:hover {
    background: #3a6225;
    transform: translateY(-2px);
}

.disclaimer {
    background: #fff8e1;
    border-left: 4px solid #ffa726;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.disclaimer p {
    color: #5d4037;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

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