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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background: #229954;
}

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    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: #2c5f4f;
}

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

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

.nav-links a:hover {
    color: #27ae60;
}

.hero-section {
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 20px;
    color: #ffffff;
    line-height: 1.7;
}

.intro-section {
    background: #f8f9fa;
    padding: 80px 20px;
}

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

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

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c5f4f;
}

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

.values-section {
    padding: 80px 20px;
    background: #ffffff;
}

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

.value-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card img {
    width: 100%;
    height: 250px;
    display: block;
}

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

.value-card p {
    padding: 0 20px 20px;
    color: #555;
    line-height: 1.7;
}

.story-section {
    padding: 80px 20px;
    background: #e8f5e9;
}

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

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

.story-section img {
    width: 100%;
    margin-top: 30px;
    border-radius: 8px;
}

.services-preview {
    padding: 80px 20px;
    background: #ffffff;
}

.services-preview h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c5f4f;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    gap: 30px;
}

.service-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c5f4f;
}

.service-info p {
    color: #555;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    white-space: nowrap;
}

.form-section {
    padding: 80px 20px;
    background: #2c5f4f;
    color: #ffffff;
}

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

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.form-wrapper > p {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 1.7;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
}

.btn-submit {
    padding: 15px 30px;
    background: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
}

.trust-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

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

.testimonials {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial cite {
    font-size: 14px;
    color: #6c757d;
    font-style: normal;
}

.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

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

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

.footer-section p,
.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-section a:hover {
    color: #27ae60;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    color: #95a5a6;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

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

.thanks-content h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 20px;
}

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

.btn-home {
    display: inline-block;
    padding: 15px 40px;
    background: #2c5f4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-home:hover {
    background: #27ae60;
}

.legal-page {
    padding: 60px 20px;
    background: #f8f9fa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c5f4f;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c5f4f;
}

.legal-content p,
.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.contact-page {
    padding: 60px 20px;
}

.contact-info-section {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-section h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #2c5f4f;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.contact-detail p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.about-hero {
    background: #2c5f4f;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.about-content-section {
    padding: 80px 20px;
}

.about-content-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c5f4f;
}

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

.about-image-section {
    padding: 80px 20px;
    background: #e8f5e9;
}

.about-image-section img {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
}

.services-page {
    padding: 60px 20px;
}

.services-page h1 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c5f4f;
}

.service-detail {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.service-detail .price {
    font-size: 24px;
    color: #27ae60;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .service-item {
        flex-direction: column;
        align-items: flex-start;
    }

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

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