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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

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

.cookie-btn.accept {
    background-color: #2d8659;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #246b47;
}

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

.cookie-btn.reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d8659;
}

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

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

.main-nav a:hover {
    color: #2d8659;
}

.ad-label {
    font-size: 12px;
    color: #7f8c8d;
    padding: 6px 12px;
    border: 1px solid #e5e5e5;
    border-radius: 3px;
}

.hero-section {
    position: relative;
    width: 100%;
    background-color: #f8f9fa;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.85) 0%, rgba(28, 97, 66, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    padding: 40px;
    text-align: center;
    color: #ffffff;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2d8659;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

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

.image-text-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.split-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
}

.split-image {
    flex: 1;
    min-width: 300px;
}

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

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.7;
    color: #555;
}

.inline-link {
    color: #2d8659;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #2d8659;
    transition: all 0.3s ease;
}

.inline-link:hover {
    color: #246b47;
    border-bottom-color: #246b47;
}

.services-preview-section {
    background-color: #ffffff;
    padding: 80px 0;
}

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

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    width: calc(50% - 15px);
    min-width: 300px;
    transition: all 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px;
    color: #2c3e50;
}

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

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #2d8659;
    margin: 0 20px 20px;
}

.service-select-btn {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 14px;
    background-color: #2d8659;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select-btn:hover {
    background-color: #246b47;
}

.full-width-cta-section {
    background: linear-gradient(135deg, #2d8659 0%, #1c6142 100%);
    padding: 100px 40px;
    text-align: center;
    color: #ffffff;
}

.cta-overlay h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-overlay p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2d8659;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin: 5px;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-button.secondary:hover {
    background-color: #ffffff;
    color: #2d8659;
}

.values-section {
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.values-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

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

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

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.form-container > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #666;
}

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

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

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

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

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

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

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

.submit-btn:hover {
    background-color: #246b47;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 134, 89, 0.3);
}

.disclaimer-section {
    background-color: #fef9e7;
    padding: 50px 0;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #2d8659;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    line-height: 1.8;
    color: #b0b0b0;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px 40px 0;
    border-top: 1px solid #333;
    text-align: center;
    color: #7f8c8d;
    font-size: 13px;
}

.page-hero {
    background: linear-gradient(135deg, #2d8659 0%, #1c6142 100%);
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
}

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

.page-hero p {
    font-size: 19px;
}

.about-story-section {
    background-color: #ffffff;
}

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

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

.team-image-section {
    background-color: #f8f9fa;
    padding: 0;
}

.full-width-image {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

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

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

.mission-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.mission-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.mission-block {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 250px;
}

.mission-block h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #2d8659;
}

.mission-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.numbers-section {
    background-color: #f8f9fa;
}

.numbers-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.numbers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-around;
}

.number-item {
    text-align: center;
    flex: 1 1 200px;
    min-width: 200px;
}

.number {
    font-size: 56px;
    font-weight: 700;
    color: #2d8659;
    margin-bottom: 12px;
}

.number-item p {
    font-size: 15px;
    color: #666;
}

.approach-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

.cta-about-section {
    background-color: #f8f9fa;
}

.cta-about-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #2c3e50;
}

.cta-about-section p {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
    color: #666;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-detailed-section {
    background-color: #ffffff;
}

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

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

.service-detail-image {
    flex: 1;
    min-width: 300px;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

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

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #555;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d8659;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2d8659;
    margin-bottom: 20px;
}

.pricing-info-section {
    background-color: #f8f9fa;
}

.pricing-info-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.pricing-factors {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.factor {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
}

.factor h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d8659;
}

.factor p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-content-section {
    background-color: #ffffff;
}

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

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

.contact-info-block h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2d8659;
    font-weight: 600;
}

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

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

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.contact-map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #f0f0f0;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(45, 134, 89, 0.9);
    padding: 16px;
    border-radius: 4px;
}

.map-overlay p {
    color: #ffffff;
    font-size: 15px;
    margin: 0;
}

.contact-zones-section {
    background-color: #f8f9fa;
}

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

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

.zone-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e5e5e5;
}

.zone-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2d8659;
}

.zone-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

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

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

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

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
}

.faq-item:last-child {
    border-bottom: none;
}

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

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

.thanks-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

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

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

.thanks-container h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #2d8659;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
    color: #555;
}

.service-info {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border: 1px solid #e5e5e5;
}

.selected-service-label {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

.selected-service-name {
    font-size: 22px;
    font-weight: 600;
    color: #2d8659;
}

.thanks-note {
    font-size: 15px;
    color: #888;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.next-steps-section {
    background-color: #ffffff;
}

.next-steps-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.step-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2d8659;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.info-banner-section {
    background-color: #fef9e7;
}

.info-text {
    font-size: 16px;
    text-align: center;
    color: #666;
    line-height: 1.7;
}

.legal-page {
    background-color: #ffffff;
    padding: 60px 0;
}

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

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

.legal-container .updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

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

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

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

.legal-container ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.legal-container li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #555;
}

.legal-container a {
    color: #2d8659;
    text-decoration: none;
    border-bottom: 1px solid #2d8659;
}

.legal-container a:hover {
    color: #246b47;
    border-bottom-color: #246b47;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 12px;
    }

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

    .split-container,
    .split-container.reverse {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

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

    .cookie-content {
        flex-direction: column;
    }
}