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

:root {
    --primary-color: #2D5B3C;
    --secondary-color: #4A7C59;
    --accent-color: #8B9D83;
    --dark-color: #1A2F23;
    --light-bg: #F5F7F5;
    --text-color: #2C3E38;
    --text-light: #5A6B5E;
    --border-color: #D4DBD6;
    --white: #FFFFFF;
    --error-color: #C94F4F;
}

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

.ad-notice {
    background: var(--light-bg);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.main-nav {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

.hero-content {
    flex: 1;
}

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

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

.hero-image {
    flex: 1;
    background: var(--light-bg);
}

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

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s;
}

.cta-button:hover {
    background: var(--dark-color);
}

.intro-cards {
    background: var(--light-bg);
    padding: 80px 40px;
}

.container-wide {
    max-width: 1280px;
    margin: 0 auto;
}

.container-narrow {
    max-width: 840px;
    margin: 0 auto;
    padding: 0 40px;
}

.card-grid-3 {
    display: flex;
    gap: 30px;
}

.info-card {
    flex: 1;
    background: var(--white);
    padding: 32px;
}

.card-icon {
    background: var(--light-bg);
    margin-bottom: 20px;
    overflow: hidden;
}

.card-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--dark-color);
}

.info-card p {
    color: var(--text-light);
    font-size: 15px;
}

.content-block {
    padding: 100px 40px;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: var(--dark-color);
}

.content-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: var(--text-color);
}

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

.section-title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: var(--dark-color);
}

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

.service-card {
    flex: 0 0 calc(50% - 15px);
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.service-image {
    background: var(--light-bg);
    overflow: hidden;
}

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

.service-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

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

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

.service-select {
    background: var(--secondary-color);
    color: var(--white);
    padding: 14px 24px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.contact-form-section {
    padding: 80px 40px;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    font-size: 15px;
    font-family: inherit;
    color: var(--text-color);
}

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

.submit-button {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 16px 32px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

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

.main-footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 40px 30px;
}

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

.footer-section {
    flex: 1;
}

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

.footer-section p {
    font-size: 14px;
    color: var(--accent-color);
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--white);
}

.footer-disclaimer {
    max-width: 1280px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-disclaimer p {
    font-size: 13px;
    color: var(--accent-color);
    line-height: 1.6;
}

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

.footer-bottom p {
    font-size: 13px;
    color: var(--accent-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 2px solid var(--primary-color);
    padding: 24px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: var(--text-color);
}

.cookie-content a {
    color: var(--primary-color);
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.cookie-btn.accept:hover {
    background: var(--dark-color);
}

.cookie-btn.reject {
    background: var(--border-color);
    color: var(--text-color);
}

.cookie-btn.reject:hover {
    background: var(--text-light);
    color: var(--white);
}

.page-hero {
    background: var(--light-bg);
    padding: 80px 40px;
    text-align: center;
}

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

.lead {
    font-size: 19px;
    color: var(--text-light);
}

.content-section {
    padding: 80px 40px;
}

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

.col-content {
    flex: 1;
}

.col-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.col-content p {
    font-size: 16px;
    margin-bottom: 18px;
    color: var(--text-color);
}

.col-image {
    flex: 1;
    background: var(--light-bg);
}

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

.approach-section {
    background: var(--light-bg);
    padding: 80px 40px;
}

.approach-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--dark-color);
}

.approach-cards {
    display: flex;
    gap: 30px;
}

.approach-card {
    flex: 1;
    background: var(--white);
    padding: 32px;
}

.approach-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.approach-card p {
    font-size: 15px;
    color: var(--text-light);
}

.values-section {
    padding: 80px 40px;
}

.value-card {
    background: var(--white);
    border: 1px solid var(--border-color);
}

.value-image {
    background: var(--light-bg);
    overflow: hidden;
}

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

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

.value-card p {
    font-size: 14px;
    color: var(--text-light);
    padding: 0 24px 24px;
}

.team-section {
    background: var(--light-bg);
    padding: 80px 40px;
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--dark-color);
}

.team-section p {
    font-size: 16px;
    margin-bottom: 18px;
    color: var(--text-color);
}

.services-list {
    padding: 60px 40px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 1;
    background: var(--light-bg);
}

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

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

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

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

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

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

.service-detail-content ul li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.service-price-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--light-bg);
}

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

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

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

.cta-section h2 {
    font-size: 36px;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-button-large {
    display: inline-block;
    background: var(--white);
    color: var(--primary-color);
    padding: 18px 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button-large:hover {
    background: var(--light-bg);
}

.contact-info-section {
    padding: 60px 40px;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

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

.contact-info-box h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--dark-color);
}

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

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

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

.info-notice {
    padding: 20px;
    background: var(--light-bg);
    margin-top: 32px;
}

.info-notice p {
    font-size: 14px;
    color: var(--text-color);
}

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

.contact-form-box h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--dark-color);
}

.faq-section {
    background: var(--light-bg);
    padding: 80px 40px;
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--dark-color);
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 28px;
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--dark-color);
}

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

.thanks-section {
    padding: 100px 40px;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-icon svg {
    margin: 0 auto;
    display: block;
}

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

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

.thanks-details {
    background: var(--light-bg);
    padding: 24px;
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--text-color);
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

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

.next-steps ol li {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 12px;
}

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

.secondary-button {
    display: inline-block;
    background: var(--border-color);
    color: var(--text-color);
    padding: 16px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s;
}

.secondary-button:hover {
    background: var(--text-light);
    color: var(--white);
}

.additional-resources {
    background: var(--light-bg);
    padding: 80px 40px;
}

.additional-resources h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.additional-resources > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.resource-cards {
    display: flex;
    gap: 30px;
}

.resource-card {
    flex: 1;
    background: var(--white);
    padding: 32px;
}

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: var(--dark-color);
}

.resource-card p {
    font-size: 15px;
    color: var(--text-light);
}

.legal-page {
    padding: 60px 40px 100px;
}

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

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

.legal-page h2 {
    font-size: 28px;
    color: var(--dark-color);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 22px;
    color: var(--dark-color);
    margin-top: 28px;
    margin-bottom: 12px;
}

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

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

.legal-page ul li {
    font-size: 15px;
    color: var(--text-color);
    margin-bottom: 10px;
}

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

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

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

.legal-table td {
    font-size: 14px;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 50px 20px;
    }

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

    .card-grid-3,
    .card-grid-2,
    .approach-cards,
    .footer-content,
    .contact-layout,
    .resource-cards {
        flex-direction: column;
    }

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

    .two-col-layout,
    .service-detail-card {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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