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

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

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

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

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

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

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

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

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1b4332;
}

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

.hero-image {
    flex: 1;
    position: relative;
    background-color: #d4e9d7;
}

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

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

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

.split-layout {
    display: flex;
    align-items: center;
    gap: 0;
}

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

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

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

.split-content {
    flex: 1;
    padding: 80px 60px;
}

.split-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1b4332;
}

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

.intro-section,
.benefits-section,
.trust-section,
.about-intro,
.values-section,
.team-section {
    background: #ffffff;
}

.benefits-list {
    list-style: none;
    margin-top: 28px;
}

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

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

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

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1b4332;
}

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

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

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

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

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

.service-card p {
    font-size: 16px;
    margin: 0 24px 16px;
    color: #495057;
    flex-grow: 1;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 0 24px 24px;
}

.form-section {
    background: linear-gradient(135deg, #1b4332 0%, #2c5f2d 100%);
    padding: 80px 40px;
}

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

.form-container h2 {
    font-size: 36px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 16px;
}

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

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

.contact-form select,
.contact-form input {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

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

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

.main-footer {
    background: #1b1f23;
    color: #adb5bd;
    padding: 60px 40px 20px;
}

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

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

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

.footer-column p,
.footer-column a {
    display: block;
    margin-bottom: 10px;
    color: #adb5bd;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.7;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid #343a40;
    border-bottom: 1px solid #343a40;
    margin-bottom: 30px;
}

.disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #868e96;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    color: #6c757d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 24px 40px;
    z-index: 10000;
    display: none;
}

.cookie-banner.visible {
    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: #495057;
}

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

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

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

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

.btn-reject {
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

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

.page-hero {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
    padding: 100px 40px 80px;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    color: #1b4332;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    color: #2d6a4f;
}

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

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

.process-step {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 32px 28px;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 16px;
    opacity: 0.3;
}

.process-step h3 {
    font-size: 22px;
    color: #1b4332;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, #1b4332 0%, #2c5f2d 100%);
    padding: 100px 40px;
}

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

.cta-content h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 19px;
    color: #d4e9d7;
    margin-bottom: 36px;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #1b4332;
    padding: 18px 48px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 17px;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.services-detailed {
    background: #ffffff;
}

.service-detail {
    padding: 40px 0;
}

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

.price-large {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
    margin: 24px 0;
}

.cta-inline {
    display: inline-block;
    background: #2c5f2d;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
    margin-top: 12px;
}

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

.contact-section {
    padding: 60px 0;
}

.contact-info .contact-item {
    margin-bottom: 36px;
}

.contact-info h3 {
    font-size: 20px;
    color: #1b4332;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 17px;
    color: #495057;
}

.map-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

.map-placeholder {
    max-width: 1000px;
    margin: 0 auto;
    height: 400px;
    background: #e9ecef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #6c757d;
}

.faq-section {
    padding: 80px 40px;
    background: #ffffff;
}

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

.faq-item {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    border-bottom: none;
}

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

.faq-item p {
    font-size: 17px;
    color: #495057;
    line-height: 1.7;
}

.thanks-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    margin: 0 auto 32px;
}

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

.thanks-message {
    font-size: 20px;
    color: #2d6a4f;
    margin-bottom: 16px;
    font-weight: 600;
}

.thanks-container p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 12px;
}

.service-confirmation {
    font-weight: 600;
    color: #1b4332;
    font-size: 18px;
    margin-top: 24px;
}

.thanks-actions {
    margin-top: 48px;
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-primary {
    background: #2c5f2d;
    color: #ffffff;
}

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

.btn-secondary {
    background: #ffffff;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
}

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

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

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

.step-box {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 36px 32px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
}

.step-box h3 {
    font-size: 22px;
    color: #1b4332;
    margin-bottom: 14px;
}

.step-box p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 40px;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 44px;
    color: #1b4332;
    margin-bottom: 12px;
}

.legal-container .updated {
    color: #6c757d;
    font-size: 15px;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    color: #1b4332;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-container h3 {
    font-size: 22px;
    color: #2d6a4f;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-container h4 {
    font-size: 19px;
    color: #2d6a4f;
    margin-top: 24px;
    margin-bottom: 10px;
}

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

.legal-container ul {
    margin: 20px 0 20px 24px;
}

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

.legal-container a {
    color: #2c5f2d;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #1b4332;
}

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

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

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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

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

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