* {
    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: #333;
    background-color: #ffffff;
}

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

.navbar {
    background-color: #1a1a2e;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    padding: 20px 0;
}

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

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    padding: 25px 0;
    display: block;
}

.nav-menu li a:hover {
    color: #ffd700;
}

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

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

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
    max-width: 520px;
}

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

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

.cta-primary {
    display: inline-block;
    background-color: #2d6a4f;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1b4332;
}

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

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

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

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.intro-section p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

.services-overview {
    background-color: #f8f9fa;
    padding: 90px 20px;
}

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

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

.split-content {
    flex: 1;
}

.split-image {
    flex: 1;
    background-color: #dee2e6;
}

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

.split-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555;
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.service-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2d6a4f;
}

.additional-services {
    padding: 90px 20px;
    background-color: #ffffff;
}

.trust-section {
    padding: 90px 20px;
    background-color: #1a1a2e;
    color: #ffffff;
}

.trust-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffd700;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
}

.form-section {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a2e;
    text-align: center;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #555;
}

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

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

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

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

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

.btn-submit {
    background-color: #2d6a4f;
    color: #ffffff;
    padding: 16px 50px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1b4332;
}

.footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #ccc;
}

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.15);
    padding: 25px 20px;
    z-index: 9999;
    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;
    margin: 0;
    font-size: 15px;
    color: #333;
}

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

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

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

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

.btn-reject {
    background-color: #e9ecef;
    color: #333;
}

.btn-reject:hover {
    background-color: #dee2e6;
}

.page-header {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin: 0;
}

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

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

.mission-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.mission-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.values-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

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

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

.value-item p {
    font-size: 16px;
    color: #666;
}

.experience-section {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

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

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

.experience-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.number {
    font-size: 52px;
    font-weight: 700;
    color: #2d6a4f;
    margin-bottom: 15px;
}

.experience-card p {
    font-size: 16px;
    color: #666;
}

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

.team-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.team-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.services-detail {
    padding: 90px 20px;
    background-color: #ffffff;
}

.services-detail:nth-child(even) {
    background-color: #f8f9fa;
}

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

.service-features li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

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

.price-large {
    font-size: 42px;
    font-weight: 700;
    color: #2d6a4f;
    margin-bottom: 15px;
}

.service-note {
    font-size: 15px;
    color: #777;
    font-style: italic;
}

.additional-services-page {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

.additional-services-page h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a2e;
}

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

.service-box {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.service-box p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.how-it-works {
    padding: 90px 20px;
    background-color: #ffffff;
}

.how-it-works h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a2e;
}

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

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

.step-number {
    background-color: #2d6a4f;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

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

.contact-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

.contact-info {
    margin-top: 40px;
}

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

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

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.contact-item .note {
    font-size: 14px;
    color: #777;
    font-style: italic;
    margin-top: 8px;
}

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

.location-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.location-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.faq-section {
    padding: 90px 20px;
    background-color: #ffffff;
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

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

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

.thanks-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
    min-height: 70vh;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 44px;
    color: #2d6a4f;
    margin-bottom: 20px;
}

.thanks-content > p {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
}

.confirmation-box {
    background-color: #ffffff;
    padding: 45px;
    border-radius: 8px;
    margin-bottom: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: left;
}

.confirmation-box h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

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

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

.step-icon {
    background-color: #2d6a4f;
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.step-text p {
    font-size: 16px;
    color: #666;
}

.service-selected {
    background-color: #e7f5f0;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: none;
}

.service-selected h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.service-selected p {
    font-size: 18px;
    color: #2d6a4f;
    font-weight: 600;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2d6a4f;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1b4332;
}

.btn-secondary {
    display: inline-block;
    background-color: #e9ecef;
    color: #333;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #dee2e6;
}

.contact-info-box {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-info-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.contact-info-box p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.legal-content {
    padding: 60px 20px;
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

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

.legal-content h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #333;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

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

.legal-content ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-update {
    margin-top: 50px;
    font-style: italic;
    color: #777;
}

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

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

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

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

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .trust-grid,
    .experience-grid,
    .services-grid {
        flex-direction: column;
    }

    .faq-item {
        flex: 1 1 100%;
    }

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

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

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

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

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