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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

.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;
    margin: 0;
    min-width: 300px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #246632;
}

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

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
}

.ad-label {
    background-color: #f39c12;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d7a3e;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.hero-left {
    background-color: #ecf0f1;
}

.hero-right {
    background-color: #d6e3d8;
    padding: 0;
    overflow: hidden;
}

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-left p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #34495e;
}

.cta-primary {
    display: inline-block;
    background-color: #2d7a3e;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #246632;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45,122,62,0.3);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2d7a3e;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid #2d7a3e;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2d7a3e;
    color: #ffffff;
}

.intro-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-container.reverse {
    flex-direction: row-reverse;
}

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

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

.split-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.stats-card {
    background-color: #2d7a3e;
    color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.stat-item:last-child {
    margin-bottom: 0;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.95;
}

.services-preview {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    padding: 20px 25px 10px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 25px 15px;
    color: #34495e;
    font-size: 16px;
}

.service-card .price {
    display: block;
    padding: 15px 25px 25px;
    font-size: 28px;
    font-weight: 700;
    color: #2d7a3e;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

.process-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

.process-list {
    list-style: none;
    counter-reset: process-counter;
}

.process-list li {
    counter-increment: process-counter;
    position: relative;
    padding-left: 50px;
    margin-bottom: 25px;
    font-size: 18px;
}

.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 35px;
    height: 35px;
    background-color: #2d7a3e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.split-visual img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.testimonials {
    padding: 80px 30px;
    background-color: #ecf0f1;
}

.testimonials h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.testimonial-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-item p {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 20px;
    color: #34495e;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: #2d7a3e;
    font-style: normal;
}

.form-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    color: #34495e;
}

.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: 14px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 30px;
    background-color: #f8f9fa;
}

.disclaimer {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    color: #7f8c8d;
    text-align: center;
    line-height: 1.8;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 30px;
}

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

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 15px;
    color: #bdc3c7;
    margin-bottom: 10px;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

.page-header {
    background-color: #ecf0f1;
    padding: 80px 30px;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    color: #34495e;
}

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

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

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

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

.value-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d7a3e;
}

.value-item p {
    font-size: 17px;
    color: #34495e;
}

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

.team-stats {
    background-color: #2d7a3e;
    color: #ffffff;
    padding: 50px;
    border-radius: 8px;
}

.team-stat {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
}

.team-stat:last-child {
    margin-bottom: 0;
}

.stat-large {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-desc {
    font-size: 18px;
    opacity: 0.95;
}

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

.approach-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.approach-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.approach-step {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #2d7a3e;
    margin-bottom: 15px;
}

.approach-step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.approach-step p {
    font-size: 17px;
    color: #34495e;
}

.coverage-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

.coverage-list ul {
    list-style: none;
    padding: 0;
}

.coverage-list ul li {
    padding: 12px 0 12px 30px;
    font-size: 18px;
    color: #2c3e50;
    position: relative;
}

.coverage-list ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7a3e;
    font-weight: 700;
    font-size: 20px;
}

.cta-section {
    padding: 80px 30px;
    background-color: #2d7a3e;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 35px;
}

.service-detail {
    padding: 80px 30px;
    background-color: #ffffff;
}

.service-detail.alt-layout {
    background-color: #f8f9fa;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0 10px 30px;
    font-size: 17px;
    color: #34495e;
    position: relative;
}

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

.service-price-block {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    padding: 25px;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.price-value {
    font-size: 42px;
    font-weight: 700;
    color: #2d7a3e;
}

.pricing-note {
    padding: 60px 30px;
    background-color: #fff9e6;
}

.note-container {
    max-width: 900px;
    margin: 0 auto;
}

.note-container h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.note-container p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.8;
}

.contact-content {
    padding: 80px 30px;
    background-color: #ffffff;
}

.contact-info-block {
    margin-bottom: 35px;
}

.contact-info-block h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-detail {
    font-size: 18px;
    color: #34495e;
}

.contact-note {
    background-color: #ecf0f1;
    padding: 40px;
    border-radius: 8px;
}

.contact-note h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-note p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #34495e;
}

.faq-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    font-size: 16px;
    color: #34495e;
}

.thanks-section {
    padding: 100px 30px;
    background-color: #f8f9fa;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 35px;
    color: #34495e;
}

.thanks-info {
    background-color: #d4edda;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 18px;
    color: #155724;
}

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

.next-steps {
    padding: 80px 30px;
    background-color: #ffffff;
}

.next-steps h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.step-box {
    flex: 1 1 calc(25% - 23px);
    min-width: 220px;
    background-color: #ecf0f1;
    padding: 35px;
    border-radius: 8px;
    text-align: center;
}

.step-num {
    width: 60px;
    height: 60px;
    background-color: #2d7a3e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-box h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.step-box p {
    font-size: 16px;
    color: #34495e;
}

.legal-page {
    padding: 60px 30px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-date {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.legal-container p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-container ul li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #34495e;
    line-height: 1.8;
}

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

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #dfe6e9;
}

.cookie-table th {
    background-color: #ecf0f1;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #34495e;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        padding: 40px 30px;
    }

    .hero-right {
        min-height: 400px;
    }

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

    .split-container,
    .split-container.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .nav-container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-links {
        width: 100%;
        justify-content: space-around;
        gap: 15px;
    }

    .services-grid,
    .testimonial-grid,
    .values-grid,
    .approach-steps,
    .faq-grid,
    .steps-grid {
        flex-direction: column;
    }

    .service-card,
    .testimonial-item,
    .value-item,
    .approach-step,
    .faq-item,
    .step-box {
        flex: 1 1 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

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

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}
