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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

.ad-notice {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.hero-section {
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.hero-content {
    background: linear-gradient(135deg, #2c5f2d 0%, #4a7c59 100%);
    color: white;
    padding: 80px 40px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-image {
    background: #e8f5e9;
}

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

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: white;
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-button-light {
    display: inline-block;
    padding: 15px 35px;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
}

.cta-button-light:hover {
    background: white;
    color: #2c5f2d;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.intro-block {
    background: #f9fafb;
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.bg-light {
    background: #ffffff;
}

.bg-accent {
    background: #f0f7f0;
}

.bg-dark {
    background: #2c5f2d;
    color: white;
}

.image-text-section {
    padding: 80px 0;
}

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

.split-content.reverse {
    flex-direction: row-reverse;
}

.content-block {
    flex: 1;
}

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

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

.image-block {
    flex: 1;
    background: #e8f5e9;
}

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

.services-section {
    padding: 80px 0;
    background: #fafafa;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    background: #e8f5e9;
    height: 200px;
}

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

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #2c5f2d;
}

.service-card p {
    padding: 0 20px 15px;
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.price {
    padding: 0 20px 15px;
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
}

.select-service {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background: #2c5f2d;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.form-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    font-size: 17px;
    color: #555;
}

.appointment-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

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

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

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

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

.submit-button {
    width: 100%;
    padding: 15px;
    background: #2c5f2d;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.trust-section {
    padding: 80px 0;
    background: white;
}

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

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

.testimonial-card {
    flex: 1;
    background: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2c5f2d;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: #2c5f2d;
}

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

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

.center-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.center-text p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: #bbb;
    font-size: 14px;
}

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

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

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

.footer-col ul li a:hover {
    color: white;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.disclaimer-text {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 20px;
}

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

.cookie-content a {
    color: #81c784;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

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

.cookie-btn.reject {
    background: #555;
    color: white;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .split-content,
    .split-content.reverse {
        flex-direction: column;
        gap: 30px;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

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

.thanks-box {
    background: white;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

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

.service-highlight {
    background: #f0f7f0;
    padding: 20px;
    border-radius: 4px;
    margin: 30px 0;
    font-weight: 600;
    color: #2c5f2d;
}

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

.contact-section h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.contact-info {
    max-width: 600px;
    margin: 40px auto;
    background: #f9fafb;
    padding: 40px;
    border-radius: 8px;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c5f2d;
}

.contact-item p {
    font-size: 16px;
    color: #555;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
}

.hours-list li:last-child {
    border-bottom: none;
}

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

.about-section h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c5f2d;
}

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

.about-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

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

.about-image {
    margin: 40px 0;
    background: #e8f5e9;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

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

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

.legal-container h2 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c5f2d;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #333;
}

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

.legal-container ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-container ul li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: #555;
}

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

.services-list-section {
    padding: 80px 0;
}

.services-list-section h1 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c5f2d;
}

.services-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-detail-content {
    display: flex;
    gap: 40px;
}

.service-detail-image {
    flex: 0 0 350px;
    background: #e8f5e9;
}

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

.service-detail-text {
    flex: 1;
    padding: 30px;
}

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

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

.service-detail-text .price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f2d;
    padding: 0;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .service-detail-content {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 0 0 250px;
    }
}