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

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

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

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    background-color: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.hero-card {
    margin-bottom: 3rem;
}

.hero-image-container {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #2c5f2d;
}

.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(135deg, rgba(44, 95, 45, 0.85), rgba(30, 60, 30, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 2rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-overlay p {
    font-size: 1.3rem;
    max-width: 700px;
}

.intro-section {
    padding: 4rem 0;
    background-color: #fff;
}

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

.intro-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
}

.intro-card p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.services-preview {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5f2d;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

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

.service-card:hover {
    transform: translateY(-8px);
}

.service-image-wrapper {
    height: 240px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c5f2d;
}

.service-content p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

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

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

.form-section {
    padding: 5rem 0;
    background-color: #fff;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
    text-align: center;
}

.selected-service-display {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 600;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 5rem 0;
    background-color: #fff;
}

.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.trust-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    width: calc(33.333% - 1.5rem);
    min-width: 280px;
}

.trust-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.trust-card p {
    color: #666;
}

.disclaimer-section {
    padding: 3rem 0;
    background-color: #fff9e6;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-left: 4px solid #ff9800;
    border-radius: 6px;
}

.disclaimer-card p {
    color: #555;
    font-size: 0.95rem;
}

.main-footer {
    background-color: #2c5f2d;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

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

.footer-col a:hover {
    opacity: 1;
}

.footer-col p {
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 1.5rem;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.85;
}

.page-hero {
    background-color: #2c5f2d;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-content {
    padding: 4rem 0;
}

.about-story-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
}

.about-image-wrapper {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c5f2d;
}

.about-text p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.value-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    width: calc(33.333% - 1.5rem);
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.value-card p {
    color: #666;
}

.team-section {
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 4rem;
}

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

.team-section > p {
    text-align: center;
    color: #555;
    margin-bottom: 3rem;
}

.team-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2c5f2d;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

.mission-card {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    border-left: 6px solid #2c5f2d;
}

.mission-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.mission-card p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.services-full {
    padding: 4rem 0;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-detail-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.service-detail-content p {
    margin-bottom: 1rem;
    color: #555;
}

.service-detail-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.5rem;
    color: #666;
}

.service-detail-price {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 1rem;
    color: #666;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f2d;
}

.btn-select-large {
    width: 100%;
    padding: 1rem;
    background-color: #2c5f2d;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.services-info {
    padding: 3rem 0;
}

.info-card {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 12px;
    text-align: center;
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.info-card p {
    color: #666;
}

.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    width: calc(33.333% - 1.5rem);
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.contact-card p {
    color: #666;
    margin-bottom: 0.3rem;
}

.contact-info-section {
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    margin-bottom: 4rem;
}

.contact-info-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.contact-info-section p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.faq-section {
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c5f2d;
    text-align: center;
}

.faq-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.faq-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c5f2d;
}

.faq-card p {
    color: #666;
}

.thanks-section {
    padding: 6rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-card h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1rem;
}

.service-confirmation {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.service-confirmation p {
    margin: 0;
    color: #2c5f2d;
    font-size: 1.1rem;
}

.thanks-card p {
    color: #666;
    margin-bottom: 1rem;
}

.thanks-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.btn-secondary {
    background-color: #f8f9fa;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
}

.btn-primary:hover,
.btn-secondary:hover {
    opacity: 0.85;
}

.legal-content {
    padding: 4rem 0;
    background-color: #fff;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c5f2d;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c5f2d;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: #666;
}

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

.legal-content em {
    color: #888;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .service-card {
        width: 100%;
    }

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

    .service-detail-card:nth-child(even) {
        flex-direction: column;
    }

    .about-story-card {
        flex-direction: column;
    }

    .trust-card,
    .value-card,
    .contact-card {
        width: 100%;
    }

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

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

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