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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2d3436;
    line-height: 1.6;
    overflow-x: hidden;
}

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.sidebar-nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 240px;
    height: 100vh;
    background-color: #2d5016;
    color: #ffffff;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    z-index: 100;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #a8d08d;
}

.nav-links {
    list-style: none;
    flex-grow: 1;
}

.nav-links li {
    margin-bottom: 20px;
}

.nav-links a {
    color: #e8f5e9;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

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

.nav-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-footer a {
    color: #b0bec5;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

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

.main-content {
    margin-left: 240px;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    background-color: #f4f7f5;
}

.hero-content-left {
    width: 45%;
    padding: 80px 60px;
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1b3409;
}

.hero-content-left p {
    font-size: 19px;
    margin-bottom: 40px;
    color: #4a5568;
}

.cta-primary {
    display: inline-block;
    background-color: #5a8f3a;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #4a7a2e;
}

.hero-image-right {
    width: 55%;
    position: relative;
    background-color: #c8d6c4;
}

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

.intro-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    align-items: flex-start;
}

.intro-text-block {
    width: 40%;
    padding-top: 60px;
}

.intro-text-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2d5016;
}

.intro-text-block p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
}

.intro-visual-offset {
    width: 60%;
    position: relative;
}

.intro-visual-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: #d4e2d4;
}

.intro-highlight {
    background-color: #5a8f3a;
    color: #ffffff;
    padding: 30px;
    margin-top: -60px;
    margin-left: 40px;
    position: relative;
    z-index: 2;
    max-width: 400px;
}

.intro-highlight p {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
}

.services-preview {
    padding: 80px 60px;
    background-color: #fafbfa;
}

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

.services-grid-asymmetric {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 50px;
}

.service-card {
    width: 320px;
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card.offset-top {
    margin-top: 0;
}

.service-card.offset-bottom {
    margin-top: 40px;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #c8d6c4;
}

.service-card h3 {
    font-size: 20px;
    margin: 20px 20px 15px;
    color: #2d5016;
}

.service-card p {
    font-size: 15px;
    margin: 0 20px 20px;
    color: #5a6c7d;
    line-height: 1.6;
}

.price-tag {
    background-color: #e8f5e9;
    color: #2d5016;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.cta-inline {
    text-align: center;
    margin-top: 40px;
}

.cta-inline a {
    color: #5a8f3a;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #5a8f3a;
    padding-bottom: 4px;
    transition: color 0.3s, border-color 0.3s;
}

.cta-inline a:hover {
    color: #4a7a2e;
    border-color: #4a7a2e;
}

.philosophy-block {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    gap: 60px;
}

.philosophy-content {
    width: 50%;
}

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

.philosophy-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.philosophy-image {
    width: 50%;
    background-color: #d4e2d4;
}

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

.form-section {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    background-color: #f9faf9;
}

.form-container-offset {
    width: 55%;
}

.form-container-offset h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2d5016;
}

.form-container-offset > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #5a6c7d;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    margin-bottom: 8px;
    color: #2d3436;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 14px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #5a8f3a;
}

.btn-submit {
    background-color: #5a8f3a;
    color: #ffffff;
    padding: 16px;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #4a7a2e;
}

.form-side-visual {
    width: 45%;
    background-color: #c8d6c4;
}

.form-side-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

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

.trust-item {
    padding: 40px;
    background-color: #f4f7f5;
    border-left: 4px solid #5a8f3a;
}

.trust-item.offset-right {
    margin-left: 100px;
}

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

.trust-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.testimonials-asymmetric {
    padding: 100px 60px;
    background-color: #2d5016;
    color: #ffffff;
}

.testimonial-block {
    max-width: 700px;
    padding: 40px;
    margin-bottom: 40px;
}

.testimonial-block.left-aligned {
    margin-left: 0;
    margin-right: auto;
}

.testimonial-block.right-aligned {
    margin-left: auto;
    margin-right: 0;
}

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

.testimonial-author {
    font-size: 16px;
    color: #a8d08d;
}

.cta-final {
    padding: 120px 60px;
    background-color: #f4f7f5;
}

.cta-content-asymmetric {
    max-width: 600px;
    margin-left: 100px;
}

.cta-content-asymmetric h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2d5016;
}

.cta-content-asymmetric p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a5568;
}

.btn-cta-large {
    display: inline-block;
    background-color: #5a8f3a;
    color: #ffffff;
    padding: 18px 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-cta-large:hover {
    background-color: #4a7a2e;
}

.footer {
    background-color: #1b3409;
    color: #e8f5e9;
    padding: 60px 60px 40px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    color: #b0bec5;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #e8f5e9;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    border-top: 1px solid #2d5016;
    padding-top: 30px;
    max-width: 900px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #b0bec5;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 30px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #2d3436;
    min-width: 300px;
}

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

.btn-cookie {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-cookie.accept {
    background-color: #5a8f3a;
    color: #ffffff;
}

.btn-cookie.accept:hover {
    background-color: #4a7a2e;
}

.btn-cookie.reject {
    background-color: #e0e0e0;
    color: #2d3436;
}

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

.cookie-link {
    color: #5a8f3a;
    font-size: 14px;
    text-decoration: none;
    border-bottom: 1px solid #5a8f3a;
}

.cookie-link:hover {
    color: #4a7a2e;
}

.services-page-header {
    background-color: #f4f7f5;
    padding: 80px 60px;
    text-align: center;
}

.services-page-header h1 {
    font-size: 48px;
    color: #2d5016;
    margin-bottom: 20px;
}

.services-page-header p {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.services-list-section {
    padding: 80px 60px;
}

.service-item-detailed {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.service-item-detailed:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item-image {
    width: 45%;
    background-color: #c8d6c4;
}

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

.service-item-content {
    width: 55%;
}

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

.service-item-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.service-price-display {
    background-color: #e8f5e9;
    padding: 20px;
    display: inline-block;
    border-radius: 4px;
}

.service-price-display .price-label {
    font-size: 14px;
    color: #5a6c7d;
    margin-bottom: 5px;
}

.service-price-display .price-value {
    font-size: 28px;
    font-weight: 700;
    color: #2d5016;
}

.about-page-header {
    background-color: #2d5016;
    color: #ffffff;
    padding: 100px 60px;
}

.about-page-header h1 {
    font-size: 48px;
    margin-bottom: 25px;
}

.about-page-header p {
    font-size: 20px;
    max-width: 800px;
    line-height: 1.7;
}

.about-story-section {
    padding: 80px 60px;
    display: flex;
    gap: 60px;
}

.about-story-content {
    width: 60%;
}

.about-story-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2d5016;
}

.about-story-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.about-story-image {
    width: 40%;
    background-color: #d4e2d4;
}

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

.about-values-section {
    padding: 80px 60px;
    background-color: #f9faf9;
}

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

.values-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.value-card {
    width: 300px;
    padding: 40px 30px;
    background-color: #ffffff;
    border-radius: 6px;
}

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

.value-card p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
}

.contact-page-container {
    padding: 100px 60px;
}

.contact-page-container h1 {
    font-size: 44px;
    margin-bottom: 50px;
    color: #2d5016;
}

.contact-info-blocks {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

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

.contact-info-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2d5016;
}

.contact-info-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-page-container {
    padding: 80px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page-container h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #2d5016;
}

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

.legal-page-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d5016;
}

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

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

.legal-page-container ul li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 10px;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
}

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

.thanks-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a5568;
    line-height: 1.7;
}

.thanks-content .btn-back {
    display: inline-block;
    background-color: #5a8f3a;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.thanks-content .btn-back:hover {
    background-color: #4a7a2e;
}

@media (max-width: 1024px) {
    .sidebar-nav {
        width: 200px;
    }

    .main-content {
        margin-left: 200px;
    }

    .hero-offset {
        flex-direction: column;
    }

    .hero-content-left,
    .hero-image-right {
        width: 100%;
    }

    .services-grid-asymmetric {
        flex-direction: column;
        align-items: center;
    }

    .service-card.offset-bottom {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .sidebar-nav {
        width: 100%;
        height: auto;
        position: relative;
        padding: 20px;
    }

    .main-content {
        margin-left: 0;
    }

    .intro-asymmetric,
    .philosophy-block,
    .form-section,
    .about-story-section,
    .contact-info-blocks {
        flex-direction: column;
    }

    .intro-text-block,
    .intro-visual-offset,
    .philosophy-content,
    .philosophy-image,
    .form-container-offset,
    .form-side-visual,
    .about-story-content,
    .about-story-image {
        width: 100%;
    }

    .trust-item.offset-right {
        margin-left: 0;
    }

    .values-grid {
        flex-direction: column;
        align-items: center;
    }
}