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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-accept {
    background-color: #4a7c59;
    color: #ffffff;
}

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

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

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

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

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

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

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

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

.main-nav a:hover {
    color: #4a7c59;
}

.ad-disclosure {
    font-size: 12px;
    color: #888888;
    padding: 6px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

.hero-left,
.hero-right {
    flex: 1;
}

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

.hero-content {
    max-width: 500px;
}

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

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

.hero-right {
    background-size: cover;
    background-position: center;
    background-color: #e5e5e5;
}

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background-color: #4a7c59;
    color: #ffffff;
}

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

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

.cta-secondary:hover {
    background-color: #4a7c59;
    color: #ffffff;
}

.intro-section,
.testimonial-section,
.final-cta {
    padding: 80px 20px;
}

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

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

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

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

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

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

.split-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

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

.split-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #555555;
}

.split-image {
    background-size: cover;
    background-position: center;
    background-color: #e5e5e5;
}

.problem-section,
.trust-section,
.approach-section {
    background-color: #f9f9f9;
}

.insight-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.insight-header {
    text-align: center;
    margin-bottom: 60px;
}

.insight-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.insight-header p {
    font-size: 20px;
    color: #555555;
}

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

.insight-card {
    flex: 1;
    padding: 40px;
    background-color: #f9f9f9;
    border-left: 4px solid #4a7c59;
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.insight-card p {
    color: #555555;
    line-height: 1.8;
}

.process-steps {
    margin-top: 32px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #4a7c59;
    min-width: 60px;
}

.step-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step-content p {
    color: #555555;
}

.testimonial-section {
    background-color: #f9f9f9;
    text-align: center;
}

.testimonial-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a1a1a;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background-color: #ffffff;
    padding: 32px;
    border-left: 4px solid #4a7c59;
    text-align: left;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.testimonial cite {
    font-style: normal;
    color: #888888;
    font-size: 14px;
}

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

.services-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #555555;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(50% - 16px);
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.service-card.featured {
    border: 2px solid #4a7c59;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #4a7c59;
    color: #ffffff;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    z-index: 10;
}

.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    background-color: #e5e5e5;
}

.service-content {
    padding: 32px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-content p {
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #3d6749;
}

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

.form-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

.form-section > div > p {
    text-align: center;
    margin-bottom: 40px;
    font-size: 18px;
    color: #555555;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #4a7c59;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #3d6749;
}

.final-cta {
    text-align: center;
    background-color: #1a1a1a;
    color: #ffffff;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #cccccc;
}

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

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

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

.footer-column p {
    color: #cccccc;
    line-height: 1.8;
}

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

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

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 24px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #4a7c59;
}

.footer-disclaimer p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.7;
}

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

.page-hero {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

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

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

.about-story {
    margin-bottom: 60px;
}

.values-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

.value-card {
    flex: 1;
    padding: 40px;
    background-color: #f9f9f9;
    text-align: center;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.value-card p {
    color: #555555;
    line-height: 1.8;
}

.cta-section {
    padding: 80px 20px;
    background-color: #1a1a1a;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #cccccc;
}

.services-detailed {
    padding: 60px 20px;
}

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

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

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

.service-detail-content {
    position: relative;
}

.badge-popular {
    display: inline-block;
    background-color: #4a7c59;
    color: #ffffff;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 16px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #555555;
    line-height: 1.8;
}

.service-detail-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-detail-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.service-detail-content ul li {
    margin-bottom: 8px;
    color: #555555;
    line-height: 1.8;
}

.service-detail-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #e5e5e5;
    border-radius: 8px;
}

.featured-service {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    flex-direction: column;
}

.featured-service .service-detail-content,
.featured-service .service-detail-image {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    padding: 60px 20px;
}

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

.contact-card {
    flex: 1;
    padding: 40px;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-card p {
    color: #555555;
    line-height: 1.8;
}

.map-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.map-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.map-placeholder {
    max-width: 800px;
    margin: 0 auto;
    height: 400px;
    background-color: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.map-placeholder p {
    font-size: 18px;
    color: #888888;
}

.thanks-section {
    padding: 120px 20px;
    text-align: center;
}

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

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

.next-steps {
    background-color: #f9f9f9;
    padding: 40px;
    margin: 40px 0;
    border-left: 4px solid #4a7c59;
    text-align: left;
}

.next-steps h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.next-steps ol {
    padding-left: 20px;
}

.next-steps ol li {
    margin-bottom: 12px;
    font-size: 17px;
    color: #555555;
    line-height: 1.8;
}

.legal-page {
    padding: 60px 20px;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

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

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

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

.legal-page ul li {
    margin-bottom: 8px;
    color: #555555;
    line-height: 1.8;
}

.legal-page a {
    color: #4a7c59;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #3d6749;
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    border: 1px solid #e5e5e5;
    text-align: left;
}

.cookie-table th {
    background-color: #f9f9f9;
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    color: #555555;
}

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

    .hero-left {
        padding: 40px 20px;
    }

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

    .hero-right {
        min-height: 300px;
    }

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

    .split-content {
        padding: 40px 20px;
    }

    .split-image {
        min-height: 300px;
    }

    .insight-grid,
    .values-grid,
    .contact-grid {
        flex-direction: column;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

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

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
    }

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

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

    .service-detail-image {
        height: 300px;
    }
}