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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.btn-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

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

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

.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: #2d5016;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
    min-height: 600px;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: #f8f9fa;
}

.hero-text-content {
    max-width: 600px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-3px);
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
}

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

.intro-split {
    display: flex;
    min-height: 500px;
}

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

.intro-image,
.intro-content {
    flex: 1;
}

.intro-image {
    position: relative;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    height: 100%;
}

.intro-content {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.intro-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.services-grid {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

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

.section-header-center p {
    font-size: 18px;
    color: #666;
}

.service-cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.card-content {
    padding: 32px;
}

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

.card-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: #3a5a40;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: #2d5016;
    transform: translateY(-2px);
}

.form-section-split {
    display: flex;
    min-height: 600px;
}

.form-visual,
.form-container {
    flex: 1;
}

.form-visual {
    position: relative;
    overflow: hidden;
}

.form-visual img {
    width: 100%;
    height: 100%;
}

.form-container {
    padding: 80px 60px;
    background-color: #ffffff;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2d5016;
}

.form-container p {
    font-size: 17px;
    margin-bottom: 32px;
    color: #666;
}

.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 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.trust-content > p {
    font-size: 18px;
    margin-bottom: 48px;
    text-align: center;
    color: #666;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.trust-points {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-point {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.trust-point strong {
    display: block;
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.trust-point p {
    font-size: 16px;
    color: #666;
}

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

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

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

.footer-column ul li a {
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #27ae60;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: #bdc3c7;
}

.page-hero-split {
    display: flex;
    min-height: 400px;
}

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

.page-hero-content h1 {
    font-size: 52px;
    margin-bottom: 16px;
    color: #2d5016;
}

.page-hero-content p {
    font-size: 20px;
    color: #666;
}

.page-hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
}

.about-story {
    padding: 80px 40px;
    background-color: #ffffff;
}

.story-layout-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2d5016;
}

.story-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.story-image {
    flex: 1;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.story-image img {
    width: 100%;
    height: 100%;
}

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

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

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

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.value-item p {
    font-size: 16px;
    color: #666;
}

.team-section-alt {
    padding: 80px 40px;
    background-color: #ffffff;
}

.team-intro-text {
    max-width: 900px;
    margin: 0 auto;
}

.team-intro-text h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #2d5016;
}

.team-intro-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.cta-about {
    padding: 100px 40px;
    background-color: #2d5016;
}

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

.cta-content-centered h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-content-centered p {
    font-size: 19px;
    margin-bottom: 36px;
    color: #ecf0f1;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 48px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-cta-large:hover {
    background-color: #229954;
    transform: translateY(-3px);
}

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

.services-header-content h1 {
    font-size: 52px;
    margin-bottom: 16px;
    color: #2d5016;
}

.services-header-content p {
    font-size: 20px;
    color: #666;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-detail-item {
    margin-bottom: 80px;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-detail-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
}

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

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

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555;
}

.service-benefits {
    margin: 24px 0;
    padding-left: 20px;
}

.service-benefits li {
    list-style: disc;
    font-size: 16px;
    margin-bottom: 10px;
    color: #666;
}

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

.services-cta-form {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.form-wrapper-centered {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.form-wrapper-centered p {
    font-size: 17px;
    margin-bottom: 32px;
    text-align: center;
    color: #666;
}

.contact-page-layout {
    display: flex;
    min-height: 700px;
}

.contact-content-area {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.contact-content-area h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #2d5016;
}

.contact-content-area > p {
    font-size: 18px;
    margin-bottom: 48px;
    color: #666;
}

.contact-info-blocks {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

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

.contact-note {
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 4px solid #27ae60;
}

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

.contact-visual-area {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.contact-visual-area img {
    width: 100%;
    height: 100%;
}

.thanks-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    font-size: 72px;
    color: #27ae60;
    margin-bottom: 24px;
}

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

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

.thanks-details {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 6px;
    margin-bottom: 32px;
    font-size: 16px;
    color: #555;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
    transform: translateY(-2px);
}

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

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

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 24px;
}

.legal-content ul li {
    list-style: disc;
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
}

.legal-content a {
    color: #27ae60;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #229954;
}

.legal-content em {
    color: #7f8c8d;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .form-section-split,
    .page-hero-split,
    .contact-page-layout,
    .split-layout {
        flex-direction: column;
    }

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

    .hero-left,
    .hero-right {
        min-height: 400px;
    }

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

    .story-layout-split {
        flex-direction: column;
    }

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

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

    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .hero-left,
    .intro-content,
    .form-container,
    .contact-content-area {
        padding: 40px 30px;
    }

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

    .section-header-center h2 {
        font-size: 32px;
    }

    .trust-points {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

    .form-wrapper-centered {
        padding: 40px 30px;
    }

    .thanks-content {
        padding: 40px 30px;
    }
}