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

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

.main-header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.ad-disclosure {
    order: 3;
    flex-basis: 100%;
    text-align: center;
    padding: 10px;
    background-color: #fff8e1;
    border-radius: 4px;
}

.ad-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

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

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

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

.hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #fff;
    max-width: 700px;
}

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

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
}

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

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

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

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

.cards-section {
    padding: 80px 0;
}

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

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

.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 280px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-body {
    padding: 25px;
}

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

.card-body p {
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.5;
}

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

.btn-card {
    width: 100%;
    padding: 12px;
    background-color: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 15px;
}

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

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

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
}

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

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

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

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

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

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

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

.info-section {
    padding: 80px 0;
}

.info-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.info-text {
    flex: 1;
}

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

.info-text p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.info-image {
    flex: 1;
    height: 400px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
}

.info-image img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

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

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

.footer-col a:hover {
    color: #fff;
}

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    margin-bottom: 20px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 13px;
}

.page-hero {
    background-color: #f5f5f5;
    padding: 60px 0;
    text-align: center;
}

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

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

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

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

.content-block h3 {
    font-size: 28px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.content-block p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.values-list {
    list-style-position: inside;
    font-size: 16px;
    line-height: 2;
}

.image-block {
    margin: 50px 0;
    padding: 20px;
}

.image-block img {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    max-width: 900px;
    margin: 0 auto 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    padding: 40px;
}

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

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.price-label {
    font-size: 16px;
    color: #666;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
}

.btn-service {
    padding: 15px 40px;
    background-color: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #1e4620;
}

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

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

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

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

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

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

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

.contact-block h3 {
    font-size: 22px;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.contact-block p {
    font-size: 15px;
    line-height: 1.7;
}

.email-display {
    font-weight: 600;
    color: #333;
}

.email-note {
    font-size: 13px;
    color: #999;
    margin-top: 5px;
}

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

.map-placeholder {
    border-radius: 12px;
}

.legal-content {
    padding: 60px 0;
}

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

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

.legal-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.legal-text li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

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

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

.thanks-content h2 {
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 15px;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 30px;
}

.thanks-details {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.thanks-info {
    font-size: 15px;
    margin-bottom: 15px;
    color: #666;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

.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;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

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

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

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

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero-text h2 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .service-card {
        width: 100%;
    }

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

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

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

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

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