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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

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

.nav-main {
    background: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c7a3f;
    text-decoration: none;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2c7a3f;
}

.hero-block {
    background: linear-gradient(135deg, rgba(44, 122, 63, 0.9), rgba(34, 95, 49, 0.85)),
                url('https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?w=1600') center/cover;
    color: #ffffff;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    width: 100%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: #ffffff;
    color: #2c7a3f;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: #f8f9fa;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
    border: 1px solid #dee2e6;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: #e9ecef;
}

.intro-section {
    padding: 100px 20px;
    background: #f8f9fa;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 35px;
    color: #2c7a3f;
    text-align: center;
}

.intro-section p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #4a5568;
}

.visual-break {
    background: #ffffff;
}

.split-layout {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

.split-image,
.split-text {
    flex: 1;
}

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

.split-text {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.split-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #4a5568;
}

.services-stack {
    padding: 100px 20px;
    background: #2c7a3f;
    color: #ffffff;
}

.services-stack h2 {
    font-size: 2.8rem;
    margin-bottom: 60px;
    text-align: center;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.service-card .price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffd700;
}

.btn-service {
    width: 100%;
    padding: 12px 25px;
    background: #ffffff;
    color: #2c7a3f;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1rem;
}

.btn-service:hover {
    background: #f8f9fa;
}

.trust-block {
    padding: 100px 20px;
    background: #ffffff;
}

.trust-block h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c7a3f;
    opacity: 0.3;
    flex-shrink: 0;
}

.step h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step p {
    font-size: 1.05rem;
    color: #4a5568;
}

.testimonial-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.testimonial-section blockquote {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.4rem;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.8;
}

.testimonial-section cite {
    display: block;
    margin-top: 25px;
    font-style: normal;
    font-size: 1rem;
    color: #718096;
}

.cta-section {
    padding: 100px 20px;
    background: #2c7a3f;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.form-section {
    padding: 100px 20px;
    background: #ffffff;
}

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.final-cta {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.final-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.final-cta p {
    font-size: 1.2rem;
    color: #4a5568;
}

.footer {
    background: #1a202c;
    color: #ffffff;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

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

.footer-col a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    color: #a0aec0;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 90;
}

.btn-sticky {
    display: block;
    padding: 15px 30px;
    background: #2c7a3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(44, 122, 63, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-sticky:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 122, 63, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #ffd700;
}

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

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

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

.btn-reject {
    background: #718096;
    color: #ffffff;
}

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

.page-header {
    padding: 80px 20px 60px;
    background: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-header p {
    font-size: 1.2rem;
    color: #718096;
}

.about-intro {
    padding: 80px 20px;
    background: #ffffff;
}

.about-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c7a3f;
    text-align: center;
}

.about-intro p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #4a5568;
}

.values-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c7a3f;
}

.value-item p {
    font-size: 1.05rem;
    color: #4a5568;
}

.team-section {
    padding: 80px 20px;
    background: #ffffff;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.team-text {
    flex: 1;
}

.team-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #4a5568;
}

.team-image {
    flex: 1;
}

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

.approach-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.approach-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c7a3f;
    text-align: center;
}

.approach-section p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #4a5568;
}

.services-detailed {
    padding: 80px 20px;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: stretch;
    margin-bottom: 80px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.service-content {
    flex: 1.2;
    padding: 50px;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2c7a3f;
}

.service-content > p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #4a5568;
}

.service-features {
    margin: 30px 0;
}

.service-features h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    color: #4a5568;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c7a3f;
    font-weight: 700;
}

.service-pricing {
    margin: 30px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 1rem;
    color: #718096;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #2c7a3f;
}

.service-image {
    flex: 1;
}

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

.contact-section {
    padding: 80px 20px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #2c7a3f;
}

.contact-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.contact-item a {
    color: #2c7a3f;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item .note {
    font-size: 0.95rem;
    color: #718096;
    margin-top: 10px;
    font-style: italic;
}

.contact-map {
    flex: 1;
}

.contact-map h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.map-placeholder {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    min-height: 300px;
}

.map-placeholder p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #4a5568;
}

.contact-cta {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #4a5568;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: #2c7a3f;
}

.thanks-content > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #4a5568;
}

.service-confirm {
    background: #f0fdf4;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: none;
}

.service-confirm p {
    font-size: 1.1rem;
    color: #2c3e50;
}

.thanks-info {
    text-align: left;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-info ol {
    padding-left: 20px;
}

.thanks-info li {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #4a5568;
}

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

.thanks-note {
    background: #fff3cd;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.thanks-note p {
    font-size: 0.95rem;
    color: #856404;
    text-align: left;
}

.thanks-note a {
    color: #2c7a3f;
    text-decoration: none;
    font-weight: 600;
}

.thanks-note a:hover {
    text-decoration: underline;
}

.legal-content {
    padding: 60px 20px;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c7a3f;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #4a5568;
}

.legal-content ul {
    margin-bottom: 25px;
    padding-left: 30px;
}

.legal-content li {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #4a5568;
}

.legal-content a {
    color: #2c7a3f;
    text-decoration: none;
}

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

@media (max-width: 968px) {
    .nav-links {
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .split-layout,
    .team-layout,
    .contact-layout {
        flex-direction: column;
    }

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

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

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

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

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .split-text {
        padding: 40px 30px;
    }

    .service-content {
        padding: 30px;
    }

    h2 {
        font-size: 2rem !important;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.85rem;
    }
}