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

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

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

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

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

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

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

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
}

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

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

.nav a:hover {
    color: #c9d9b8;
}

.hero {
    display: flex;
    align-items: center;
    min-height: 600px;
    background: linear-gradient(135deg, #f5f2ed 0%, #e8e3d9 100%);
    padding: 60px 20px;
}

.hero-content {
    flex: 1;
    padding-right: 60px;
    max-width: 600px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2d5016;
}

.hero p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #555;
}

.hero-image {
    flex: 1;
    background-color: #d9cfc0;
}

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

.cta-button {
    display: inline-block;
    background-color: #2d5016;
    color: #fff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1f3810;
    cursor: pointer;
}

.cta-button.secondary {
    background-color: #6b8e4e;
    margin-left: 12px;
}

.cta-button.secondary:hover {
    background-color: #557a3e;
}

.intro-cards {
    padding: 80px 20px;
    background-color: #fff;
}

.card-grid {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.feature-card {
    flex: 1;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 250px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d5016;
}

.card-content p {
    color: #666;
    line-height: 1.7;
}

.services-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f5f2ed 0%, #ffffff 100%);
}

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

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 6px 30px rgba(0,0,0,0.12);
}

.service-card.featured {
    border: 3px solid #2d5016;
}

.service-image {
    flex: 1;
    min-width: 400px;
    background-color: #e8e3d9;
}

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

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2d5016;
}

.service-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 32px;
    font-weight: bold;
    color: #2d5016;
    margin-bottom: 20px;
}

.select-service-btn {
    background-color: #2d5016;
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.select-service-btn:hover {
    background-color: #1f3810;
}

.order-form-section {
    padding: 80px 20px;
    background-color: #fff;
}

.form-wrapper {
    background-color: #f9f9f9;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #2d5016;
    text-align: center;
}

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

.order-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: #e8e8e8;
    cursor: not-allowed;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-group a {
    color: #2d5016;
    text-decoration: underline;
}

.submit-btn {
    background-color: #2d5016;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials {
    padding: 80px 20px;
    background-color: #f5f2ed;
}

.testimonials h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2d5016;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #2d5016;
}

.footer {
    background-color: #1a2e0e;
    color: #fff;
    padding: 60px 20px 20px;
}

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

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

.footer-col p {
    color: #b8b8b8;
    line-height: 1.8;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #2d5016;
    padding-top: 20px;
    text-align: center;
    color: #888;
    font-size: 14px;
}

.footer-bottom .disclaimer {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.6;
    color: #777;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d5016;
    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;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

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

.page-hero {
    background: linear-gradient(135deg, #2d5016 0%, #4a7028 100%);
    padding: 100px 20px;
    text-align: center;
    color: #fff;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    color: #c9d9b8;
}

.about-content {
    padding: 80px 20px;
}

.content-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.content-block.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2d5016;
}

.text-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.image-content {
    flex: 1;
    background-color: #e8e3d9;
}

.image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    background-color: #f9f9f9;
    padding: 60px;
    border-radius: 12px;
    margin-top: 60px;
}

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2d5016;
    text-align: center;
}

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

.value-item {
    flex: 1;
    text-align: center;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2d5016;
}

.value-item p {
    color: #666;
    line-height: 1.7;
}

.team-section {
    padding: 80px 20px;
    background-color: #fff;
}

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

.team-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 60px;
}

.team-card {
    text-align: center;
    max-width: 280px;
}

.team-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    background-color: #e8e3d9;
}

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

.team-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2d5016;
}

.team-role {
    color: #666;
    font-style: italic;
}

.services-detail {
    padding: 80px 20px;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: #e8e3d9;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.service-description {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.service-features h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d5016;
}

.service-features ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-features ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #555;
    line-height: 1.7;
}

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

.service-price-block {
    background-color: #f5f2ed;
    padding: 24px;
    border-radius: 8px;
}

.price-large {
    font-size: 38px;
    font-weight: bold;
    color: #2d5016;
    margin-bottom: 16px;
}

.price-note {
    color: #666;
    font-size: 14px;
    margin-top: 12px;
}

.delivery-info {
    padding: 80px 20px;
    background-color: #f5f2ed;
}

.delivery-info h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #2d5016;
}

.info-grid {
    display: flex;
    gap: 40px;
}

.info-card {
    flex: 1;
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d5016;
}

.info-card p {
    color: #666;
    line-height: 1.8;
}

.contact-section {
    padding: 80px 20px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2d5016;
}

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

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d5016;
}

.contact-item p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.contact-item .note {
    font-size: 14px;
    color: #888;
    font-style: italic;
    margin-top: 8px;
}

.contact-image-block {
    flex: 1;
    background-color: #e8e3d9;
}

.contact-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.faq-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

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

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d5016;
}

.faq-item p {
    color: #666;
    line-height: 1.8;
}

.cta-contact {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, #2d5016 0%, #4a7028 100%);
    color: #fff;
}

.cta-contact h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.cta-contact p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #c9d9b8;
}

.cta-contact .cta-button {
    background-color: #fff;
    color: #2d5016;
}

.cta-contact .cta-button:hover {
    background-color: #f0f0f0;
}

.thanks-section {
    padding: 80px 20px;
    min-height: 600px;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2d5016;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.order-info {
    background-color: #f9f9f9;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

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

.order-detail {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.order-label {
    font-weight: 600;
    color: #333;
}

.order-value {
    color: #2d5016;
    font-weight: 600;
}

.next-steps {
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2d5016;
}

.steps-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.step-item {
    flex: 1;
    max-width: 250px;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #2d5016;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 16px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d5016;
}

.step-item p {
    color: #666;
    line-height: 1.7;
}

.thanks-image {
    margin: 40px 0;
    background-color: #e8e3d9;
}

.thanks-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.thanks-actions {
    margin-bottom: 40px;
}

.contact-support {
    font-size: 16px;
    color: #666;
}

.contact-support p {
    margin-bottom: 8px;
}

.contact-support a {
    color: #2d5016;
    text-decoration: underline;
}

.legal-page {
    padding: 60px 20px 80px;
    background-color: #fff;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 12px;
    color: #2d5016;
}

.update-date {
    color: #888;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d5016;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #4a7028;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.legal-page ul,
.legal-page ol {
    margin: 16px 0 16px 24px;
}

.legal-page ul li,
.legal-page ol li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #555;
}

.legal-page a {
    color: #2d5016;
    text-decoration: underline;
}

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

.gdpr-table th,
.cookie-table th {
    background-color: #2d5016;
    color: #fff;
    padding: 12px;
    text-align: left;
}

.gdpr-table td,
.cookie-table td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.gdpr-table tr:nth-child(even),
.cookie-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

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

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

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

    .card-grid,
    .testimonial-grid,
    .values-grid,
    .info-grid,
    .steps-grid,
    .team-grid {
        flex-direction: column;
    }

    .service-card,
    .service-detail-card,
    .content-block,
    .contact-layout {
        flex-direction: column !important;
    }

    .service-image {
        min-width: 100%;
        height: 300px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

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