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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bf0d;
    --accent-color: #e67e22;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.ad-disclosure {
    background-color: #fffbea;
    border-bottom: 1px solid #f5e6a8;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #856404;
}

.main-nav {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: var(--bg-light);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    background-color: #dcdcdc;
}

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

.intro-split {
    display: flex;
    background-color: var(--bg-white);
}

.intro-image {
    flex: 1;
    background-color: #e5e5e5;
}

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

.intro-text {
    flex: 1;
    padding: 80px 60px;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.intro-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-preview {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

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

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header-centered p {
    font-size: 20px;
    color: var(--text-light);
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 320px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    width: 100%;
    height: 220px;
    background-color: #d0d0d0;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service:hover {
    background-color: #234d24;
    transform: scale(1.02);
}

.features-split {
    display: flex;
    background-color: var(--bg-white);
}

.features-text {
    flex: 1;
    padding: 80px 60px;
}

.features-text h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.feature-item h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-item p {
    font-size: 17px;
    color: var(--text-light);
}

.features-image {
    flex: 1;
    background-color: #dddddd;
}

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

.cta-section {
    padding: 100px 40px;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background-color: #a8d40f;
    transform: scale(1.05);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.form-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.form-modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 50px;
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.selected-service-display {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.main-footer {
    background-color: #1a1a1a;
    color: var(--bg-white);
    padding: 60px 40px 20px;
}

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

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

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

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

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
    color: #888888;
    font-size: 14px;
}

.disclaimer-notice {
    background-color: #f9f9f9;
    border-top: 1px solid var(--border-color);
    padding: 30px 40px;
    text-align: center;
}

.disclaimer-notice p {
    font-size: 14px;
    color: var(--text-light);
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.8;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: var(--bg-white);
    padding: 25px 40px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1500;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #e0e0e0;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.cookie-buttons button {
    padding: 10px 24px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-hero {
    background-color: var(--primary-color);
    padding: 100px 40px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 52px;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.9);
}

.about-split {
    display: flex;
    background-color: var(--bg-white);
    padding: 0;
}

.about-text {
    flex: 1;
    padding: 80px 60px;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.values-section {
    padding: 100px 40px;
    background-color: var(--bg-light);
}

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

.value-card {
    flex: 1;
    padding: 40px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-card p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.process-split {
    display: flex;
    background-color: var(--bg-white);
}

.process-image {
    flex: 1;
    background-color: #d8d8d8;
}

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

.process-text {
    flex: 1;
    padding: 80px 60px;
}

.process-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.process-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.team-section {
    padding: 100px 40px;
    background-color: var(--bg-light);
    text-align: center;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.team-intro {
    font-size: 19px;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto 50px;
}

.team-image-container {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #d5d5d5;
    border-radius: 8px;
    overflow: hidden;
}

.team-image-container img {
    width: 100%;
    height: auto;
}

.services-detailed {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

.service-detail {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 80px;
    gap: 60px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-detail-content > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-features {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 18px;
    color: var(--text-light);
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-detail p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-form-container {
    flex: 1;
}

.contact-form-container h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.thanks-section {
    padding: 120px 40px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.thanks-service {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 600;
}

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

.legal-page {
    padding: 80px 40px;
    background-color: var(--bg-white);
}

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

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-intro {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.legal-content h2 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-content ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-date {
    margin-top: 50px;
    font-style: italic;
    color: var(--text-light);
}

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

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookie-table td {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .features-split,
    .about-split,
    .process-split,
    .service-detail {
        flex-direction: column;
    }

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

    .hero-content,
    .intro-text,
    .features-text,
    .about-text,
    .process-text {
        padding: 60px 40px;
    }

    .hero-image,
    .intro-image,
    .features-image,
    .about-image,
    .process-image {
        min-height: 400px;
    }

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

    .contact-split {
        flex-direction: column;
        gap: 50px;
    }

    .service-card {
        flex: 1 1 calc(50% - 30px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .section-header-centered h2,
    .cta-content h2,
    .team-section h2 {
        font-size: 32px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}