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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3436;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #74b9ff;
    text-decoration: underline;
}

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

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

#cookie-accept {
    background-color: #00b894;
    color: #ffffff;
}

#cookie-accept:hover {
    background-color: #00a383;
}

#cookie-reject {
    background-color: #636e72;
    color: #ffffff;
}

#cookie-reject:hover {
    background-color: #525c60;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.brand h1 {
    font-size: 28px;
    color: #2d5016;
    font-weight: 600;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #2d5016;
}

.ad-notice {
    font-size: 12px;
    color: #636e72;
    padding: 5px 10px;
    background-color: #f4f4f0;
    border-radius: 3px;
}

.hero-section {
    margin-bottom: 60px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.hero-overlay h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 30px;
    max-width: 700px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #2d5016;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #3d6b22;
    transform: translateY(-2px);
}

.cta-button-secondary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #636e72;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #525c60;
    transform: translateY(-2px);
}

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

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

.intro-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d3436;
}

.intro-content p {
    font-size: 18px;
    color: #636e72;
}

.services-grid-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d3436;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 20px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 25px;
}

.card-content h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d3436;
}

.card-content p {
    font-size: 15px;
    color: #636e72;
    margin-bottom: 15px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #2d5016;
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    padding: 12px 20px;
    background-color: #2d5016;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: #3d6b22;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-content h3 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2d3436;
}

.cta-content p {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 30px;
}

.form-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f4f4f0;
    padding: 40px;
    border-radius: 8px;
}

.form-wrapper h3 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #2d3436;
}

.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: #2d3436;
}

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

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

.submit-button {
    padding: 15px 40px;
    background-color: #2d5016;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #3d6b22;
}

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

.trust-content h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d3436;
}

.trust-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f4f4f0;
    border-radius: 8px;
}

.trust-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d3436;
}

.trust-card p {
    font-size: 15px;
    color: #636e72;
}

.site-footer {
    background-color: #2d3436;
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-column p {
    font-size: 14px;
    color: #b2bec3;
    line-height: 1.8;
}

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

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

.footer-column ul li a {
    color: #b2bec3;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    padding: 20px 0;
    border-top: 1px solid #636e72;
    border-bottom: 1px solid #636e72;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: #b2bec3;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #b2bec3;
}

.page-hero {
    background-color: #2d5016;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
}

.about-content-section {
    padding: 60px 0;
}

.about-grid {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d3436;
}

.about-text p {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 20px;
}

.about-image-wrapper {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.values-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d3436;
}

.values-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.value-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d3436;
}

.value-card p {
    font-size: 15px;
    color: #636e72;
}

.team-section {
    padding: 60px 0;
    max-width: 800px;
    margin: 0 auto;
}

.team-section h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d3436;
}

.team-section p {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 20px;
}

.services-detail-section {
    padding: 60px 0;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2d3436;
}

.service-detail-content p {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 15px;
}

.service-detail-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 15px;
    color: #636e72;
    margin-bottom: 10px;
}

.service-price {
    font-size: 22px;
    font-weight: 700;
    color: #2d5016;
    margin-top: 20px;
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2d3436;
}

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

.contact-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d3436;
}

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

.contact-map-placeholder {
    flex: 1;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #636e72;
}

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

.faq-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d3436;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2d3436;
}

.faq-item p {
    font-size: 15px;
    color: #636e72;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

.thanks-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2d5016;
}

.thanks-content p {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-details {
    background-color: #f4f4f0;
    padding: 20px;
    border-radius: 8px;
    margin: 30px auto;
    max-width: 600px;
}

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

.next-steps-section {
    padding: 60px 0;
}

.next-steps-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d3436;
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.step-card {
    flex: 1;
    min-width: 240px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.step-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d5016;
}

.step-card p {
    font-size: 15px;
    color: #636e72;
}

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

.legal-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2d3436;
}

.legal-section h3 {
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2d3436;
}

.legal-section h4 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2d3436;
}

.legal-section p {
    font-size: 15px;
    color: #636e72;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.legal-section ul li {
    font-size: 15px;
    color: #636e72;
    margin-bottom: 10px;
    line-height: 1.8;
}

.legal-section a {
    color: #2d5016;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .service-card {
        width: calc(50% - 15px);
    }

    .about-grid,
    .contact-grid,
    .service-detail-card {
        flex-direction: column;
    }

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

    .hero-overlay h2 {
        font-size: 36px;
    }

    .hero-overlay p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

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

    .service-card {
        width: 100%;
    }

    .trust-cards,
    .values-cards,
    .steps-grid {
        flex-direction: column;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .thanks-actions a {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}
