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

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

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

.header-main {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

.hero-section {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

.services-grid {
    padding: 80px 0;
}

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

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

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

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

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

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

.card-content {
    padding: 25px;
}

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

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

.price-tag {
    font-size: 28px;
    font-weight: bold;
    color: #2c5f2d;
    margin-bottom: 15px;
}

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

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

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

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

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

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

.selected-service-display {
    background-color: #e8f5e9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 25px;
    border-left: 4px solid #2c5f2d;
}

.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: 5px;
    font-size: 15px;
    font-family: inherit;
}

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

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

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

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

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

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.feature-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    text-align: center;
}

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

.feature-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

.footer-disclaimer {
    background-color: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.3);
    z-index: 2000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
}

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

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

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

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

.btn-cookie.reject {
    background-color: #666;
    color: #fff;
}

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

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

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

.about-story .container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.story-content {
    flex: 1;
    min-width: 300px;
}

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

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

.story-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

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

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

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

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

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

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

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

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

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

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #555;
}

.team-description {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: bold;
    color: #2c5f2d;
    opacity: 0.3;
    margin-bottom: 15px;
}

.process-step h3 {
    font-size: 20px;
    color: #2c5f2d;
    margin-bottom: 15px;
}

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

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

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

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

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

.services-detail {
    padding: 80px 0;
}

.service-detail-item {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

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

.detail-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

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

.detail-content {
    flex: 1;
    min-width: 300px;
}

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

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

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

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 15px;
    color: #555;
}

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

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

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

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

.contact-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.email-text {
    color: #333;
    font-weight: 500;
}

.contact-description {
    max-width: 800px;
    margin: 0 auto 50px;
}

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

.contact-description p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.location-info {
    margin-top: 50px;
}

.location-info h3 {
    font-size: 28px;
    color: #2c5f2d;
    margin-bottom: 30px;
    text-align: center;
}

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

.direction-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
}

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

.direction-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

.contact-cta {
    padding: 60px 0;
    background-color: #f9f9f9;
    text-align: center;
}

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

.contact-cta p {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

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

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.success-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-content h1 {
    font-size: 36px;
    color: #2c5f2d;
    margin-bottom: 20px;
}

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

.thanks-details {
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 5px;
    margin-top: 25px;
    border-left: 4px solid #2c5f2d;
}

.service-confirmation p {
    font-size: 16px;
    color: #333;
}

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

.next-steps h2 {
    font-size: 24px;
    color: #2c5f2d;
    margin-bottom: 20px;
    text-align: center;
}

.steps-list {
    list-style: none;
    padding: 0;
}

.steps-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

.steps-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: bold;
    font-size: 18px;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

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

.last-updated {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-bottom: 40px;
}

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

.legal-content h1 {
    font-size: 42px;
    color: #2c5f2d;
    margin-bottom: 10px;
    text-align: center;
}

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

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

.legal-content h4 {
    font-size: 18px;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

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

.legal-content a:hover {
    color: #1e4620;
}

.text-link {
    color: #2c5f2d;
    text-decoration: none;
    border-bottom: 1px dotted #2c5f2d;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
}

.cookie-table thead {
    background-color: #2c5f2d;
    color: #fff;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    .nav-main {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

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

    .menu-toggle {
        display: flex;
    }

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

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

    .service-card {
        width: 100%;
        min-width: auto;
    }

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

    .page-header h1 {
        font-size: 32px;
    }

    .about-story .container,
    .service-detail-item {
        flex-direction: column;
    }

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

    .thanks-content {
        padding: 40px 25px;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .cookie-table {
        font-size: 12px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px;
    }
}
