* {
    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;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2d6a4f;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

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

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

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

.hero-image-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #40916c;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    max-width: 700px;
    font-weight: 300;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 30px;
}

.intro-section {
    background-color: #f8f9fa;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: #495057;
}

.alt-bg {
    background-color: #f8f9fa;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.text-content {
    flex: 1;
}

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

.text-content p {
    font-size: 17px;
    margin-bottom: 18px;
    line-height: 1.8;
}

.image-content {
    flex: 1;
    background-color: #d8f3dc;
}

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

.image-text-section .section-container {
    flex-direction: row;
}

.services-preview {
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 50px;
    color: #2d6a4f;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    width: 360px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
    background-color: #f8f9fa;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 24px;
    margin: 20px 25px 15px;
    color: #2d6a4f;
}

.service-card p {
    font-size: 16px;
    margin: 0 25px 15px;
    color: #495057;
    flex-grow: 1;
    line-height: 1.6;
}

.service-card .price {
    font-size: 22px;
    font-weight: 700;
    color: #2d6a4f;
    margin: 0 25px 15px;
}

.select-service-btn {
    margin: 0 25px 25px;
    padding: 14px 28px;
    background-color: #2d6a4f;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    background-color: #f8f9fa;
}

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

.contact-form {
    max-width: 650px;
    margin: 0 auto;
}

.form-notice {
    background-color: #fff3cd;
    color: #856404;
    padding: 15px;
    margin-bottom: 25px;
    border-left: 4px solid #ffc107;
    font-size: 15px;
    display: none;
}

.form-notice.show {
    display: block;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ced4da;
    font-size: 16px;
    font-family: inherit;
    background-color: #ffffff;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #2d6a4f;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.submit-btn:disabled {
    background-color: #95d5b2;
    cursor: not-allowed;
}

.disclaimer-section {
    background-color: #fff8e1;
    border-top: 3px solid #ffc107;
}

.disclaimer-text {
    font-size: 15px;
    line-height: 1.7;
    color: #6c757d;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

.main-footer {
    background-color: #1b4332;
    color: #d8f3dc;
    padding: 50px 30px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #d8f3dc;
}

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

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

.footer-column ul li a {
    color: #d8f3dc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -4px 12px 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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
}

.cookie-content a {
    color: #95d5b2;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #2d6a4f;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #6c757d;
    color: #ffffff;
}

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

.page-header {
    background-color: #2d6a4f;
    color: #ffffff;
    padding: 60px 30px;
}

.page-header h1 {
    font-size: 48px;
    text-align: center;
}

.about-intro {
    background-color: #ffffff;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.process-section {
    background-color: #f8f9fa;
}

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

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

.process-step {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 30px;
    border-left: 4px solid #2d6a4f;
}

.step-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #95d5b2;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d6a4f;
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
}

.values-section .section-container {
    flex-direction: row-reverse;
}

.expertise-section {
    background-color: #f8f9fa;
}

.expertise-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2d6a4f;
}

.expertise-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.services-detail {
    background-color: #ffffff;
}

.service-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 0 30px;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

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

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
}

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

.service-features li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d6a4f;
    font-weight: 700;
    font-size: 18px;
}

.service-pricing {
    margin: 25px 0;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #2d6a4f;
}

.price-label {
    font-size: 16px;
    color: #6c757d;
    margin-right: 10px;
}

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

.service-detail-image {
    flex: 1;
    background-color: #d8f3dc;
}

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

.contact-content {
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-section {
    flex: 1;
}

.contact-info-section h2 {
    font-size: 36px;
    margin-bottom: 35px;
    color: #2d6a4f;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d6a4f;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #2d6a4f;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

.contact-image-section {
    flex: 1;
    background-color: #d8f3dc;
}

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

.location-section {
    background-color: #f8f9fa;
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d6a4f;
}

.location-section p {
    font-size: 17px;
    line-height: 1.8;
    max-width: 800px;
}

.thanks-section {
    background-color: #ffffff;
    min-height: 500px;
}

.thanks-section .content-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2d6a4f;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn-primary {
    background-color: #2d6a4f;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.thanks-image {
    flex: 1;
    background-color: #d8f3dc;
}

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

.legal-page {
    background-color: #ffffff;
    min-height: 600px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 35px;
    color: #2d6a4f;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #2d6a4f;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #495057;
}

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

.legal-page ul {
    margin: 15px 0;
    padding-left: 30px;
}

.legal-page ul li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 20px;
    }

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

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

    .section-container {
        flex-direction: column;
        padding: 50px 20px;
    }

    .service-block {
        flex-direction: column;
        padding: 0 20px;
    }

    .service-block.reverse {
        flex-direction: column;
    }

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

    .thanks-section .content-wrapper {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

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

    .cookie-buttons {
        justify-content: stretch;
        flex-direction: column;
    }
}