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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2d7a3e;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 60px 80px;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a4a4a;
}

.hero-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #2d7a3e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #245c30;
}

.cta-secondary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ffffff;
    color: #2d7a3e;
    text-decoration: none;
    border: 2px solid #2d7a3e;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

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

.intro-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a4a4a;
}

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

.services-preview h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    flex: 1;
    max-width: 360px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    margin: 0 20px 15px;
    color: #6c757d;
}

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

.process-split {
    display: flex;
    min-height: 550px;
}

.process-text {
    flex: 1;
    padding: 60px 80px;
    background-color: #ffffff;
}

.process-text h2 {
    font-size: 34px;
    margin-bottom: 35px;
    color: #1a1a1a;
}

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

.step {
    display: flex;
    gap: 20px;
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: #2d7a3e;
    min-width: 50px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.step p {
    font-size: 16px;
    color: #4a4a4a;
}

.process-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

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

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

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 17px;
    color: #4a4a4a;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 15px;
    background-color: #2d7a3e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #245c30;
}

.benefits-split {
    display: flex;
    min-height: 500px;
}

.benefits-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.benefits-text {
    flex: 1;
    padding: 60px 80px;
    background-color: #f8f9fa;
}

.benefits-text h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.benefits-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #4a4a4a;
}

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

.main-footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 50px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 30px;
    display: flex;
    gap: 60px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    color: #b8b8b8;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #454545;
    font-size: 13px;
    color: #888888;
    line-height: 1.5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px 30px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    margin: 0;
}

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

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

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

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

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

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

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-header p {
    font-size: 18px;
    color: #6c757d;
}

.services-detailed {
    background-color: #ffffff;
}

.service-detail-split {
    display: flex;
    min-height: 450px;
    border-bottom: 1px solid #e9ecef;
}

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

.service-detail-content {
    flex: 1;
    padding: 50px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
    color: #4a4a4a;
}

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

.pricing-box {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 20px;
}

.price-label {
    font-size: 16px;
    color: #6c757d;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

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

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

.note-container h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.note-container p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #4a4a4a;
}

.note-container ul {
    margin: 15px 0 15px 30px;
    color: #4a4a4a;
}

.note-container ul li {
    margin-bottom: 8px;
    font-size: 16px;
}

.about-split {
    display: flex;
    min-height: 500px;
}

.about-content {
    flex: 1;
    padding: 60px 80px;
    background-color: #ffffff;
}

.about-content h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.about-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a4a4a;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

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

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

.value-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.experience-split {
    display: flex;
    min-height: 550px;
}

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

.experience-content {
    flex: 1;
    padding: 60px 80px;
    background-color: #ffffff;
}

.experience-content h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.experience-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a4a4a;
    line-height: 1.7;
}

.experience-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 35px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #2d7a3e;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
}

.process-overview {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.process-overview h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.timeline-marker {
    min-width: 50px;
    height: 50px;
    background-color: #2d7a3e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.timeline-content p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.contact-split {
    display: flex;
    min-height: 500px;
}

.contact-info {
    flex: 1;
    padding: 60px 80px;
    background-color: #ffffff;
}

.contact-info h2 {
    font-size: 34px;
    margin-bottom: 35px;
    color: #1a1a1a;
}

.contact-block {
    margin-bottom: 30px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d7a3e;
}

.contact-block p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

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

.faq-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

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

.faq-item h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.6;
}

.thanks-section {
    padding: 80px 30px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 40px;
    color: #4a4a4a;
    line-height: 1.7;
}

.next-steps {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 6px;
    margin-bottom: 35px;
    text-align: left;
}

.next-steps h2 {
    font-size: 26px;
    margin-bottom: 25px;
    color: #1a1a1a;
    text-align: center;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.step-num {
    min-width: 35px;
    height: 35px;
    background-color: #2d7a3e;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-item p {
    flex: 1;
    font-size: 16px;
    color: #4a4a4a;
    margin: 0;
    padding-top: 7px;
}

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

.btn-primary {
    padding: 15px 35px;
    background-color: #2d7a3e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #245c30;
}

.btn-secondary {
    padding: 15px 35px;
    background-color: #ffffff;
    color: #2d7a3e;
    text-decoration: none;
    border: 2px solid #2d7a3e;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.contact-reminder {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.contact-reminder p {
    font-size: 16px;
    color: #6c757d;
}

.contact-reminder strong {
    color: #2d7a3e;
}

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

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2d7a3e;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a4a4a;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin: 15px 0 15px 30px;
    color: #4a4a4a;
}

.legal-page ul li,
.legal-page ol li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
}

.legal-page a {
    color: #2d7a3e;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-page a:hover {
    color: #245c30;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .process-split,
    .benefits-split,
    .service-detail-split,
    .about-split,
    .experience-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-content,
    .intro-text,
    .process-text,
    .benefits-text,
    .service-detail-content,
    .about-content,
    .experience-content,
    .contact-info {
        padding: 40px 30px;
    }

    .hero-image,
    .intro-image,
    .process-image,
    .benefits-image,
    .service-detail-image,
    .about-image,
    .experience-image,
    .contact-image {
        min-height: 300px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .nav-links {
        gap: 20px;
    }

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

    .stats-row {
        flex-direction: column;
        gap: 20px;
    }

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