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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97be5a;
    --accent-color: #1a3a1b;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-dark: #2a2a2a;
    --border-color: #e0e0e0;
    --white: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.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: 250px;
}

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

.btn-primary, .btn-secondary {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-color);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

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

.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;
    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: 30px;
}

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

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

.ad-label {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 600px;
}

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

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

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.5;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    background-color: var(--border-color);
}

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

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

.intro-text {
    flex: 2;
}

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

.intro-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 4px;
}

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

.services-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
}

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

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

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: var(--border-color);
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 24px 12px;
    color: var(--text-dark);
}

.service-card p {
    padding: 0 24px;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    padding: 0 24px;
    margin-bottom: 16px;
}

.service-select {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 12px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-select:hover {
    background-color: var(--accent-color);
}

.contact-form-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 60px;
    display: flex;
    gap: 60px;
}

.form-container {
    flex: 1;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 32px;
}

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

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

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

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

.submit-button {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--accent-color);
}

.form-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.why-choose {
    max-width: 1200px;
    margin: 100px auto;
    padding: 60px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.why-choose h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
}

.benefits-layout {
    display: flex;
    gap: 40px;
}

.benefit-item {
    flex: 1;
}

.benefit-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.main-footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 60px 0 0;
    margin-top: 100px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px 40px;
    display: flex;
    gap: 60px;
}

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-disclaimer p {
    font-size: 13px;
    color: #999999;
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #999999;
}

.page-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 60px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

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

.about-content {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 60px;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

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

.about-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.team-values {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 60px;
}

.team-values h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
}

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

.value-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 250px;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.expertise-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 60px;
}

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

.expertise-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

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

.expertise-text {
    flex: 1;
}

.expertise-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.expertise-text p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.expertise-list {
    list-style: none;
}

.expertise-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    color: var(--text-light);
}

.expertise-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.approach-section {
    max-width: 1000px;
    margin: 100px auto;
    padding: 60px;
    background-color: var(--primary-color);
    border-radius: 12px;
    color: var(--white);
}

.approach-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 32px;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

.service-detail-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: var(--text-dark);
}

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

.service-detail-content ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-light);
}

.service-detail-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.service-cta {
    max-width: 1000px;
    margin: 100px auto;
    padding: 60px;
    background-color: var(--bg-light);
    border-radius: 12px;
    text-align: center;
}

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

.service-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-page-content {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 60px;
}

.contact-info-section {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
}

.contact-info-card {
    flex: 1;
}

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 32px;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.info-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.hours-note {
    font-style: italic;
    color: var(--text-dark);
    margin-top: 8px;
}

.contact-image {
    flex: 1;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.response-time {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 60px;
}

.response-time h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
}

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

.response-item {
    flex: 1;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.response-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.response-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.service-area {
    max-width: 1000px;
    margin: 100px auto;
    padding: 60px;
    background-color: var(--primary-color);
    border-radius: 12px;
    color: var(--white);
}

.service-area h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.service-area > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 32px;
    text-align: center;
}

.coverage-regions {
    display: flex;
    gap: 24px;
}

.region-item {
    flex: 1;
    padding: 24px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
    text-align: center;
}

.region-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.region-item p {
    font-size: 14px;
    opacity: 0.9;
}

.thanks-content {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 60px;
}

.thanks-container {
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 32px;
    width: 80px;
    height: 80px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
}

.thanks-message {
    margin-bottom: 48px;
}

.thanks-message p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 12px;
}

#service-confirmation {
    font-weight: 600;
    color: var(--primary-color);
}

.next-steps {
    margin-bottom: 48px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 32px;
}

.steps-grid {
    display: flex;
    gap: 32px;
    text-align: left;
}

.step-item {
    flex: 1;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.step-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

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

.urgent-note {
    padding: 32px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    text-align: left;
}

.urgent-note h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.urgent-note p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto 100px;
    padding: 0 60px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

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

.legal-content ul {
    margin: 16px 0 16px 24px;
    color: var(--text-light);
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-split,
    .about-split,
    .expertise-layout,
    .service-detail,
    .contact-form-section,
    .contact-info-section {
        flex-direction: column;
    }

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

    .benefits-layout,
    .steps-grid,
    .response-grid,
    .coverage-regions {
        flex-direction: column;
    }

    .services-grid {
        gap: 20px;
    }

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

    .intro-section {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

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

    .hero-content,
    .page-header,
    .about-content,
    .team-values,
    .expertise-section,
    .services-detailed,
    .contact-page-content,
    .thanks-content,
    .legal-page {
        padding: 0 30px;
    }

    .intro-section,
    .services-section,
    .contact-form-section,
    .footer-content,
    .footer-disclaimer,
    .footer-bottom {
        padding: 0 30px;
    }

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

    .values-grid {
        gap: 20px;
    }

    .value-item {
        flex: 1 1 100%;
    }
}