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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 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;
    z-index: 10000;
    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;
    margin: 0;
    min-width: 300px;
}

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

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

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

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

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

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

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo a {
    font-size: 22px;
    font-weight: 700;
    color: #2d5016;
    text-decoration: none;
}

.nav-ad-label {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 28px;
}

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

.nav-menu a:hover {
    color: #2d5016;
}

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

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

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

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a4a4a;
}

.hero-right {
    flex: 1;
    background-color: #e8e8e8;
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2d5016;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: #2d5016;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #2d5016;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
}

.btn-secondary:hover {
    background-color: #2d5016;
    color: #ffffff;
}

.btn-large {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2d5016;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

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

.intro-split {
    display: flex;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

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

.intro-image {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    padding: 0 40px;
}

.intro-text h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a4a4a;
}

.services-grid {
    padding: 100px 40px;
    background-color: #f9f9f9;
}

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

.section-header-centered h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-centered p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 32px);
    min-width: 300px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 240px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.service-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-body h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1a1a1a;
}

.service-body p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.cta-split {
    display: flex;
    background-color: #2d5016;
    color: #ffffff;
    padding: 60px;
    align-items: center;
    gap: 40px;
}

.cta-content {
    flex: 1;
    padding-left: 40px;
}

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

.cta-content p {
    font-size: 18px;
    line-height: 1.6;
}

.cta-action {
    flex: 0 0 auto;
    padding-right: 40px;
}

.process-split {
    display: flex;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: stretch;
}

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

.process-text {
    flex: 1;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-text h2 {
    font-size: 34px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.process-step {
    margin-bottom: 28px;
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2d5016;
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.process-image {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.form-section-split {
    display: flex;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    background-color: #fafafa;
}

.form-intro {
    flex: 0 0 400px;
    padding: 0 40px;
}

.form-intro h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
}

.form-container {
    flex: 1;
    padding: 0 40px;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.disclaimer-section {
    padding: 60px 40px;
    background-color: #f5f5f5;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    background-color: #fff;
    border-left: 4px solid #2d5016;
    border-radius: 4px;
}

.disclaimer-content h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.disclaimer-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

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

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

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

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

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

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

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

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

.services-detail-split {
    display: flex;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

.services-detail-split.reverse {
    flex-direction: row-reverse;
}

.service-detail-left {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-detail-right {
    flex: 1;
    padding: 0 40px;
}

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

.service-detail-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a4a4a;
}

.service-pricing-box {
    background-color: #f5f5f5;
    padding: 24px;
    border-radius: 6px;
    margin: 28px 0;
}

.price-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

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

.cta-centered {
    padding: 80px 40px;
    background-color: #fafafa;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cta-box h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.about-split {
    display: flex;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
    padding: 0 40px;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a4a4a;
}

.about-image {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

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

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

.team-split {
    display: flex;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

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

.team-image {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.team-text {
    flex: 1;
    padding: 0 40px;
}

.team-text h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.team-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a4a4a;
}

.contact-split {
    display: flex;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    align-items: center;
}

.contact-info {
    flex: 1;
    padding: 0 40px;
}

.contact-info h2 {
    font-size: 34px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

.contact-block h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2d5016;
    font-weight: 600;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-block .no-link {
    color: #4a4a4a;
    cursor: text;
}

.contact-image {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

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

.info-section {
    padding: 60px 40px;
    background-color: #fafafa;
}

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

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

.info-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a4a4a;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #fafafa;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-confirmation {
    background-color: #f5f5f5;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 32px;
}

.service-confirmation p {
    font-size: 16px;
    color: #4a4a4a;
    margin: 0;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 40px;
    padding: 24px;
    background-color: #fafafa;
    border-radius: 6px;
}

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

.thanks-next-steps ul {
    list-style: none;
    padding-left: 0;
}

.thanks-next-steps ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

.thanks-next-steps ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5016;
    font-weight: bold;
}

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

.legal-page {
    padding: 60px 40px;
    background-color: #fafafa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

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

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

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

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

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

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

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

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

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

.cookie-table td {
    font-size: 15px;
    color: #4a4a4a;
}

.no-link {
    color: inherit;
    text-decoration: none;
    cursor: text;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .process-split,
    .services-detail-split,
    .about-split,
    .team-split,
    .contact-split,
    .form-section-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .process-split.reverse,
    .services-detail-split.reverse,
    .team-split.reverse {
        flex-direction: column;
    }

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

    .cta-split {
        flex-direction: column;
        text-align: center;
    }

    .cta-content,
    .cta-action {
        padding-left: 20px;
        padding-right: 20px;
    }

    .form-intro {
        flex: 1;
    }

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

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