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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #2d5016;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

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

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #27ae60;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #27ae60;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

.intro-section {
    background-color: #ffffff;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
}

.split-section-right,
.split-section-left {
    display: flex;
    align-items: stretch;
    background-color: #f8f9fa;
}

.split-section-left {
    background-color: #ffffff;
}

.split-image {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.split-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
}

.split-content .cta-secondary {
    align-self: flex-start;
    margin-top: 16px;
}

.benefits-cards {
    background-color: #ffffff;
    padding: 80px 40px;
}

.benefits-cards h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #2c3e50;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #27ae60;
}

.benefit-card p {
    font-size: 16px;
    color: #495057;
}

.testimonials-section {
    background-color: #2d5016;
    color: #ffffff;
    padding: 80px 40px;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 8px;
}

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

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    opacity: 0.9;
}

.cta-full {
    background-color: #27ae60;
    color: #ffffff;
    padding: 100px 40px;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-full .cta-primary {
    background-color: #ffffff;
    color: #27ae60;
}

.cta-full .cta-primary:hover {
    background-color: #f8f9fa;
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #27ae60;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
}

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

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

.footer-column ul a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s;
}

.footer-column ul a:hover {
    opacity: 1;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.7;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    opacity: 0.6;
}

.page-header {
    background-color: #2d5016;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.services-intro {
    background-color: #ffffff;
    padding: 60px 40px;
}

.services-intro p {
    font-size: 18px;
    text-align: center;
    color: #495057;
}

.services-list {
    background-color: #f8f9fa;
    padding: 40px 0;
}

.service-item {
    display: flex;
    align-items: stretch;
    background-color: #ffffff;
    margin-bottom: 60px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.service-image {
    flex: 0 0 45%;
    background-color: #dee2e6;
    overflow: hidden;
}

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

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

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 24px 0;
}

.select-service {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #229954;
}

.contact-form-section {
    background-color: #ffffff;
    padding: 80px 40px;
}

.contact-form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

.contact-form-section > p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    color: #495057;
}

.service-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #dee2e6;
    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: #27ae60;
}

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

.service-form button[type="submit"] {
    width: 100%;
    margin-top: 16px;
}

.about-intro {
    background-color: #ffffff;
}

.about-intro img {
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    border-radius: 8px;
}

.about-intro h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
}

.philosophy-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

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

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.philosophy-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #27ae60;
}

.philosophy-item p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

.team-section {
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
}

.contact-content {
    background-color: #f8f9fa;
    padding: 60px 40px;
}

.contact-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 320px;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #27ae60;
}

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

.contact-image {
    flex: 1;
    min-width: 320px;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-additional {
    background-color: #ffffff;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.contact-additional p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #495057;
    line-height: 1.7;
}

.contact-additional a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
}

.contact-additional a:hover {
    text-decoration: underline;
}

.thanks-section {
    background-color: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #27ae60;
}

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

.thanks-service-info {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
}

.selected-service-highlight {
    font-size: 18px;
    color: #2c3e50;
}

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

.legal-page {
    background-color: #ffffff;
    min-height: 60vh;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #27ae60;
}

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

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

.legal-page li {
    font-size: 16px;
    margin-bottom: 8px;
    color: #495057;
    line-height: 1.7;
}

.legal-page a {
    color: #27ae60;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -2px 12px 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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 280px;
    font-size: 15px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

.btn-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .hero-split,
    .split-section-right,
    .split-section-left,
    .service-item {
        flex-direction: column;
    }

    .service-item.reverse {
        flex-direction: column;
    }

    .hero-content,
    .split-content,
    .service-content {
        padding: 40px 24px;
    }

    .hero-content h1,
    .page-header h1 {
        font-size: 32px;
    }

    .split-content h2,
    .service-content h2 {
        font-size: 28px;
    }

    .nav-container {
        padding: 16px 24px;
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .benefit-card,
    .philosophy-item {
        flex: 1 1 100%;
    }

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

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

    .service-image {
        flex: 0 0 300px;
    }
}