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

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

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

.ad-disclosure {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    border-bottom: 1px solid #ddd;
}

.header-main {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.nav-link {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5f2d;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    color: #fff;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    background-color: #2c5f2d;
    color: #fff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-secondary {
    display: inline-block;
    background-color: #fff;
    color: #2c5f2d;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #2c5f2d;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background-color: #2c5f2d;
    color: #fff;
}

.intro-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.intro-text {
    flex: 1;
    min-width: 300px;
}

.intro-text h2 {
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 25px;
    line-height: 1.3;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.intro-image {
    flex: 1;
    min-width: 300px;
}

.section-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.services-preview {
    padding: 80px 0;
    background-color: #fff;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 42px;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.section-header-centered p {
    font-size: 20px;
    color: #666;
}

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

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

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

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

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 24px;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.card-content p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
    font-size: 15px;
}

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

.btn-card {
    background-color: #2c5f2d;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s ease;
    font-size: 15px;
    align-self: flex-start;
}

.btn-card:hover {
    background-color: #1f4420;
}

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

.form-container-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 10px;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #2c5f2d;
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

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

.trust-section {
    padding: 60px 0;
    background-color: #2c5f2d;
    color: #fff;
}

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

.trust-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 18px;
}

.footer-main {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

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

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2c5f2d;
}

.footer-col p {
    color: #ccc;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #2c5f2d;
    padding: 20px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
    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: 30px;
    flex-wrap: wrap;
}

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

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

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

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

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

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

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

.page-hero {
    background: linear-gradient(135deg, #2c5f2d 0%, #1f4420 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

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

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

.page-hero-small {
    background: linear-gradient(135deg, #2c5f2d 0%, #1f4420 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-hero-small h1 {
    font-size: 40px;
}

.content-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-layout {
    max-width: 900px;
    margin: 0 auto;
}

.content-card {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.content-card h2 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

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

.image-content-block {
    margin-bottom: 40px;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
}

.value-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 200px;
}

.value-card h3 {
    font-size: 22px;
    color: #2c5f2d;
    margin-bottom: 12px;
}

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

.cta-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.cta-card {
    background: linear-gradient(135deg, #2c5f2d 0%, #1f4420 100%);
    color: #fff;
    padding: 60px 40px;
    border-radius: 10px;
    text-align: center;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 30px;
}

.services-detailed {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.services-grid-detailed {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-detail-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-wrap: wrap;
}

.service-image-wrapper {
    width: 40%;
    min-width: 300px;
    background-color: #e0e0e0;
}

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

.service-detail-content {
    width: 60%;
    min-width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.service-detail-content h2 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 15px;
}

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

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

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

.service-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-side {
    flex: 1;
    min-width: 300px;
}

.contact-form-side {
    flex: 1;
    min-width: 300px;
}

.info-card {
    background-color: #f9f9f9;
    padding: 35px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.info-card h2 {
    font-size: 28px;
    color: #2c5f2d;
    margin-bottom: 25px;
}

.info-card h3 {
    font-size: 20px;
    color: #2c5f2d;
    margin-bottom: 10px;
}

.contact-detail {
    margin-bottom: 25px;
}

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

.contact-image-block {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 10px;
    background-color: #e0e0e0;
}

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

.map-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.map-info {
    text-align: center;
}

.map-info h2 {
    font-size: 32px;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.map-info p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.thanks-container h1 {
    font-size: 38px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-service-info {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.thanks-service-info p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.thanks-next-steps {
    text-align: left;
    margin: 40px 0;
}

.thanks-next-steps h2 {
    font-size: 28px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.thanks-next-steps ul {
    list-style: none;
    padding-left: 0;
}

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

.thanks-next-steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

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

.legal-content {
    padding: 60px 0;
    background-color: #fff;
}

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

.legal-text h2 {
    font-size: 28px;
    color: #2c5f2d;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h3 {
    font-size: 22px;
    color: #2c5f2d;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.legal-text ul {
    margin: 15px 0 15px 30px;
}

.legal-text li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
}

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

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

    .hero-subtitle {
        font-size: 18px;
    }

    .service-card {
        width: 100%;
    }

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

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

    .navigation {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center;
    }

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

    .service-image-wrapper,
    .service-detail-content {
        width: 100%;
    }

    .contact-layout {
        flex-direction: column;
    }

    .form-container-card {
        padding: 30px 20px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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