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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

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

.btn-accept {
    background-color: #27ae60;
    color: white;
}

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

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

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

.main-nav {
    background-color: #2c5f4f;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

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

.ad-disclosure {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 12px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.hero-section {
    min-height: 600px;
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
    overflow: hidden;
}

.hero-content {
    padding: 80px 30px 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.2;
    color: #1a3a2e;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-content p {
    font-size: 20px;
    color: #4a5f5a;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.hero-image {
    width: 100%;
    background-color: #e8ede8;
}

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

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

.intro-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.intro-text h2 {
    font-size: 38px;
    color: #1a3a2e;
    margin-bottom: 30px;
    line-height: 1.3;
}

.intro-text p {
    font-size: 18px;
    color: #4a5f5a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: #f0f7f4;
    border-left: 4px solid #27ae60;
}

.stat-card h3 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 15px;
}

.stat-card p {
    font-size: 16px;
    color: #4a5f5a;
    margin-bottom: 10px;
}

.stat-card a {
    font-size: 13px;
    color: #27ae60;
    text-decoration: none;
}

.stat-card a:hover {
    text-decoration: underline;
}

.mission-section {
    background-color: #2c5f4f;
    padding: 100px 30px;
}

.mission-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.mission-content img {
    flex: 1;
    min-width: 350px;
    width: 100%;
    height: 500px;
    object-fit: cover;
    background-color: #3d7c67;
}

.mission-text {
    flex: 1;
    min-width: 350px;
    color: #ffffff;
}

.mission-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
}

.mission-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

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

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

.services-header h2 {
    font-size: 42px;
    color: #1a3a2e;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 18px;
    color: #4a5f5a;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 420px;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}

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

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

.service-card p {
    font-size: 15px;
    color: #4a5f5a;
    line-height: 1.7;
    margin: 0 25px 20px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 25px 20px;
}

.btn-select {
    margin: 0 25px 25px;
    padding: 12px 24px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #229954;
}

.form-section {
    background-color: #1a3a2e;
    padding: 100px 30px;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    color: #ffffff;
}

.form-wrapper h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.form-wrapper > p {
    font-size: 17px;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

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

.form-group label {
    font-size: 14px;
    margin-bottom: 8px;
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
    background-color: rgba(255, 255, 255, 0.15);
}

.btn-submit {
    padding: 14px 32px;
    background-color: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.trust-section {
    background-color: #ffffff;
    padding: 100px 30px;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 40px;
    color: #1a3a2e;
    margin-bottom: 25px;
}

.trust-content > p {
    font-size: 18px;
    color: #4a5f5a;
    margin-bottom: 50px;
    line-height: 1.7;
}

.trust-elements {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
}

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

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

.disclaimer-section {
    background-color: #fff3cd;
    padding: 50px 30px;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 30px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

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

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    line-height: 1.6;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.page-header {
    background-color: #2c5f4f;
    color: #ffffff;
    padding: 80px 30px 60px;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

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

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 350px;
}

.about-text h2 {
    font-size: 38px;
    color: #1a3a2e;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 17px;
    color: #4a5f5a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    min-width: 350px;
    background-color: #e8ede8;
}

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

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

.values-section h2 {
    font-size: 40px;
    color: #1a3a2e;
    text-align: center;
    margin-bottom: 60px;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 35px;
    background-color: #ffffff;
}

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

.value-card p {
    font-size: 16px;
    color: #4a5f5a;
    line-height: 1.7;
}

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

.team-content {
    max-width: 1200px;
    margin: 0 auto;
}

.team-content h2 {
    font-size: 40px;
    color: #1a3a2e;
    margin-bottom: 25px;
}

.team-content p {
    font-size: 17px;
    color: #4a5f5a;
    line-height: 1.8;
    margin-bottom: 25px;
}

.team-content img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    margin-top: 40px;
    background-color: #e8ede8;
}

.approach-section {
    background-color: #2c5f4f;
    padding: 100px 30px;
    color: #ffffff;
}

.approach-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

.approach-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

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

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    min-width: 80px;
}

.approach-step h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.approach-step p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

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

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

.commitment-wrapper h2 {
    font-size: 40px;
    color: #1a3a2e;
    margin-bottom: 30px;
}

.commitment-wrapper p {
    font-size: 18px;
    color: #4a5f5a;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.service-detail-card {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

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

.service-detail-image {
    flex: 1;
    min-width: 350px;
    background-color: #e8ede8;
}

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

.service-detail-content {
    flex: 1;
    min-width: 350px;
}

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

.service-detail-content p {
    font-size: 16px;
    color: #4a5f5a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 30px 0 20px;
}

.services-cta {
    background-color: #1a3a2e;
    padding: 80px 30px;
}

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

.cta-content h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 17px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.contact-info {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.contact-info h2 {
    font-size: 36px;
    color: #1a3a2e;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-item {
    flex: 1;
    min-width: 250px;
}

.contact-item h3 {
    font-size: 20px;
    color: #1a3a2e;
    margin-bottom: 15px;
}

.contact-item p {
    font-size: 16px;
    color: #4a5f5a;
    line-height: 1.7;
}

.contact-map {
    max-width: 1400px;
    margin: 0 auto;
    background-color: #e8ede8;
}

.contact-map img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.contact-additional {
    background-color: #f8f9fa;
    padding: 80px 30px;
}

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

.additional-content h2 {
    font-size: 36px;
    color: #1a3a2e;
    margin-bottom: 25px;
}

.additional-content p {
    font-size: 17px;
    color: #4a5f5a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.additional-content .btn-primary {
    margin-top: 20px;
}

.thanks-section {
    background-color: #ffffff;
    padding: 120px 30px;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-content > p {
    font-size: 22px;
    color: #1a3a2e;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details p {
    font-size: 16px;
    color: #4a5f5a;
    line-height: 1.8;
    margin-bottom: 15px;
}

#serviceConfirmation {
    font-weight: 600;
    color: #1a3a2e;
}

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

.legal-page h1 {
    font-size: 42px;
    color: #1a3a2e;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.legal-content h3 {
    font-size: 20px;
    color: #2c5f4f;
    margin-top: 25px;
    margin-bottom: 15px;
}

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

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

.legal-content li {
    font-size: 16px;
    color: #4a5f5a;
    line-height: 1.8;
    margin-bottom: 10px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e8ede8;
}

.cookies-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a3a2e;
}

.cookies-table td {
    font-size: 15px;
    color: #4a5f5a;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .intro-text h2,
    .mission-text h2,
    .services-header h2,
    .values-section h2,
    .team-content h2,
    .approach-section h2,
    .commitment-wrapper h2,
    .form-wrapper h2,
    .trust-content h2,
    .cta-content h2,
    .contact-info h2,
    .additional-content h2 {
        font-size: 30px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .nav-container {
        flex-direction: column;
        text-align: center;
    }

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

    .cookie-actions {
        justify-content: center;
    }

    .mission-content,
    .about-content,
    .service-detail-card {
        flex-direction: column;
    }

    .service-detail-card.reverse {
        flex-direction: column;
    }

    .approach-step {
        flex-direction: column;
    }

    .step-number {
        font-size: 36px;
    }

    .services-grid {
        justify-content: center;
    }

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