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

:root {
    --primary: #2d5f3f;
    --primary-dark: #1e4029;
    --accent: #7ba35a;
    --text: #2c2c2c;
    --text-light: #666;
    --bg: #ffffff;
    --bg-light: #f8f9f7;
    --border: #e0e5dd;
}

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

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

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

.nav-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: var(--primary);
    text-decoration: none;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text);
    transition: 0.3s;
}

.mobile-menu {
    display: none;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    max-height: 300px;
    padding: 20px;
}

.mobile-menu a {
    padding: 12px 0;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 50px;
    background: var(--bg-light);
}

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

.hero-text p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 16px 38px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 16px 38px;
    text-decoration: none;
    border: 2px solid var(--primary);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.intro-section {
    padding: 90px 0;
}

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 70px;
    align-items: center;
}

.intro-image {
    flex: 1;
    max-width: 450px;
}

.intro-image img {
    width: 100%;
    border-radius: 8px;
}

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 38px;
    line-height: 1.3;
    color: var(--primary-dark);
    margin-bottom: 28px;
}

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

.values-grid {
    background: var(--bg-light);
    padding: 90px 0;
}

.values-grid h2 {
    font-size: 42px;
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 60px;
}

.values-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.value-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 21px;
    color: var(--primary-dark);
    margin-bottom: 14px;
}

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

.services-preview {
    padding: 90px 0;
}

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

.services-header h2 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 18px;
}

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

.services-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-item {
    display: flex;
    gap: 50px;
    align-items: center;
}

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

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    border-radius: 8px;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 18px;
}

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

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

.btn-select {
    background: var(--accent);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.testimonial-section {
    background: var(--primary-dark);
    padding: 90px 0;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    color: white;
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    opacity: 0.8;
}

.form-section {
    padding: 90px 0;
    background: var(--bg-light);
}

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

.form-header {
    text-align: center;
    margin-bottom: 45px;
}

.form-header h2 {
    font-size: 38px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

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

.contact-form {
    background: white;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.form-grid {
    display: flex;
    gap: 20px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: var(--primary-dark);
}

.final-cta {
    padding: 90px 0;
    text-align: center;
}

.final-cta h2 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

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

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

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

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

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-col a {
    display: block;
    color: white;
    text-decoration: none;
    opacity: 0.8;
    margin-bottom: 10px;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 18px 0;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.15);
    z-index: 90;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.sticky-cta.visible {
    transform: translateY(0);
}

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

.btn-sticky {
    background: white;
    color: var(--primary);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    color: white;
    padding: 25px;
    z-index: 200;
    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: 30px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

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

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

.page-hero p {
    font-size: 19px;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
}

.about-intro-split {
    display: flex;
    gap: 60px;
    padding: 90px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

.about-content {
    flex: 1;
}

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

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

.principles-section {
    background: var(--bg-light);
    padding: 90px 0;
}

.principles-section h2 {
    text-align: center;
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 60px;
}

.principles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.principle-card {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 40px 32px;
    border-radius: 8px;
}

.principle-card h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

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

.expertise-section {
    padding: 90px 0;
}

.expertise-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 70px;
    align-items: center;
}

.expertise-text {
    flex: 1;
}

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

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

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

.expertise-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: var(--text);
}

.expertise-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.expertise-image {
    flex: 1;
}

.expertise-image img {
    width: 100%;
    border-radius: 8px;
}

.commitment-section {
    background: var(--bg-light);
    padding: 90px 0;
}

.commitment-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.commitment-content h2 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 30px;
    text-align: center;
}

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

.cta-section {
    padding: 90px 0;
    text-align: center;
}

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

.cta-section p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 35px;
}

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

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

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

.service-visual-large {
    flex: 1;
}

.service-visual-large img {
    width: 100%;
    border-radius: 8px;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 34px;
    color: var(--primary-dark);
    margin-bottom: 22px;
}

.service-info p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 18px;
}

.service-pricing {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 2px solid var(--border);
    border-bottom: 2px solid var(--border);
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-amount {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.price-note {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

.service-form-section {
    background: var(--bg-light);
    padding: 90px 0;
}

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

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

.info-section h2 {
    font-size: 38px;
    color: var(--primary-dark);
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-icon {
    font-size: 32px;
    width: 50px;
}

.contact-details h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.contact-details p,
.contact-details a {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--primary);
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
}

.contact-details-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.contact-details-section h2 {
    text-align: center;
    font-size: 38px;
    color: var(--primary-dark);
    margin-bottom: 50px;
}

.expectations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.expectation-item {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 35px 28px;
    border-radius: 8px;
}

.expectation-item h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 14px;
}

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

.areas-served {
    padding: 90px 0;
}

.areas-served h2 {
    text-align: center;
    font-size: 38px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.areas-served > p {
    text-align: center;
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.areas-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
}

.area-column h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

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

.area-column li {
    padding: 8px 0;
    color: var(--text-light);
}

.service-note {
    text-align: center;
    font-size: 15px;
    color: var(--text-light);
    margin-top: 40px;
    font-style: italic;
}

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

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 35px 28px;
    border-radius: 8px;
}

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

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

.legal-page {
    padding: 60px 0 90px;
}

.legal-updated {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin: 40px 0 20px;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin: 30px 0 15px;
}

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

.legal-content ul {
    margin: 15px 0 15px 30px;
}

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

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

.legal-content a:hover {
    text-decoration: underline;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-container,
.thanks-state {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    padding: 60px 20px;
}

.thanks-state {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.thanks-container h1,
.thanks-state h1 {
    font-size: 38px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.thanks-container p,
.thanks-state p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 15px;
}

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

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

    .hero-content {
        padding: 50px 25px;
    }

    .intro-wrapper,
    .about-intro-split,
    .expertise-wrapper,
    .contact-split {
        flex-direction: column;
    }

    .service-item,
    .service-block {
        flex-direction: column !important;
    }

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

    .sticky-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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