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

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

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

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

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

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

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

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

.nav-links a:hover {
    opacity: 0.8;
}

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

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

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #5a6c57;
}

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

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

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

.cta-primary:hover {
    background-color: #246d48;
}

.intro-block {
    background-color: #1a5f3f;
    padding: 60px 24px;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 24px;
    line-height: 1.7;
    color: #e8f1ed;
    text-align: center;
}

.visual-content-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 24px;
}

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

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

.split-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a5f3f;
}

.split-text p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a5a47;
}

.services-overview {
    background-color: #f9fafb;
    padding: 80px 24px;
}

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

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

.section-header p {
    font-size: 20px;
    color: #5a6c57;
}

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

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

.service-image {
    width: 100%;
    height: 220px;
    background-color: #d4e4dc;
}

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

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

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

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #2d8659;
    margin: 16px 24px 12px;
}

.btn-select-service {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background-color: #2d8659;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #246d48;
}

.approach-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a5f3f;
}

.approach-content p {
    font-size: 19px;
    margin-bottom: 20px;
    color: #4a5a47;
}

.form-section {
    background-color: #e8f1ed;
    padding: 80px 24px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a5f3f;
}

.form-container > p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #5a6c57;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 16px 32px;
    background-color: #2d8659;
    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: #246d48;
}

.trust-elements {
    padding: 80px 24px;
    background-color: #1a5f3f;
}

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

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #ffffff;
}

.trust-content p {
    font-size: 20px;
    color: #d4e4dc;
    line-height: 1.8;
}

.main-footer {
    background-color: #0f3d28;
    color: #d4e4dc;
    padding: 60px 24px 24px;
}

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

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

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

.footer-section p {
    margin-bottom: 8px;
    font-size: 15px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 24px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    color: #b8cfc2;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    padding: 24px;
    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: 24px;
}

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

.cookie-content a {
    color: #2d8659;
    text-decoration: underline;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-cookie-accept:hover {
    background-color: #246d48;
}

.btn-cookie-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-cookie-reject:hover {
    background-color: #5a6268;
}

.page-header {
    background-color: #1a5f3f;
    padding: 80px 24px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
}

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

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

.page-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a5f3f;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #2d8659;
}

.page-content p {
    font-size: 17px;
    margin-bottom: 16px;
    line-height: 1.7;
    color: #4a5a47;
}

.page-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.page-content li {
    font-size: 17px;
    margin-bottom: 8px;
    line-height: 1.7;
    color: #4a5a47;
}

.about-intro {
    background-color: #f4f6f5;
    padding: 60px 24px;
}

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

.about-intro-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a5f3f;
}

.about-intro-content p {
    font-size: 20px;
    color: #4a5a47;
    line-height: 1.8;
}

.about-values {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #f9fafb;
    border-left: 4px solid #2d8659;
}

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

.value-item p {
    font-size: 17px;
    color: #4a5a47;
}

.contact-info-section {
    background-color: #f4f6f5;
    padding: 80px 24px;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-block {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.contact-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a5f3f;
}

.contact-block p {
    font-size: 17px;
    margin-bottom: 12px;
    color: #4a5a47;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #2d8659;
}

.thanks-content p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #4a5a47;
}

.thanks-content .cta-primary {
    align-self: center;
}

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

    .visual-content-split {
        flex-direction: column;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
    }

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

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

    .service-card {
        min-width: 100%;
    }
}