* {
    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;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e0e0e0;
}

.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;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2d7a4f;
}

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

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

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

.hero-section {
    position: relative;
    width: 100%;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
    background-color: #1a472a;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.5);
}

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

.hero-overlay p {
    font-size: 20px;
    line-height: 1.5;
}

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

.narrow-content {
    max-width: 700px;
    margin: 0 auto;
}

.lead-text {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #2d7a4f;
}

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

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

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

.split-content {
    flex: 1;
}

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

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

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

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

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

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

.insight-card {
    margin-top: 40px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.insight-card img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #c8e6c9;
}

.insight-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2d7a4f;
}

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

.testimonials-inline {
    padding: 80px 20px;
    background-color: #2d7a4f;
    color: #ffffff;
}

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-left: 4px solid #ffffff;
}

.testimonial-quote {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    text-align: right;
}

.benefits-reveal {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.benefits-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.benefit-card p {
    font-size: 16px;
    line-height: 1.7;
}

.services-overview {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.services-intro h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-intro p {
    font-size: 18px;
    line-height: 1.6;
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background-color: #c8e6c9;
}

.service-info {
    padding: 25px;
}

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

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2d7a4f;
    margin-bottom: 15px;
}

.cta-button {
    width: 100%;
    padding: 12px 24px;
    background-color: #2d7a4f;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1f5738;
}

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

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

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

.form-intro {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    color: #6c757d;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

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

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
}

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

.disclaimer-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #856404;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #856404;
}

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

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

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2d7a4f;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

.footer-section ul li a:hover {
    color: #2d7a4f;
}

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

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.page-header {
    background-color: #2d7a4f;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

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

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

.about-story,
.contact-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-block,
.contact-info {
    flex: 1;
}

.story-block h2,
.contact-info h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-block p,
.contact-info p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.image-block img,
.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.values-section,
.mission-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.values-container,
.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.values-container h2,
.mission-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.value-item {
    margin-bottom: 40px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d7a4f;
}

.value-item p {
    font-size: 18px;
    line-height: 1.7;
}

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

.team-approach {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.approach-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.approach-container > p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

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

.approach-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

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

.approach-card p {
    font-size: 16px;
    line-height: 1.7;
}

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

.catalog-container {
    max-width: 1000px;
    margin: 0 auto;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 2px solid #e0e0e0;
}

.service-detail-card:last-child {
    border-bottom: none;
}

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

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

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

.service-detail-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    margin-bottom: 25px;
}

.feature-list li {
    font-size: 15px;
    line-height: 1.6;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d7a4f;
    font-weight: 700;
}

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

.order-link {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2d7a4f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.order-link:hover {
    background-color: #1f5738;
}

.cta-section {
    padding: 80px 20px;
    background-color: #2d7a4f;
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button-large {
    display: inline-block;
    padding: 15px 40px;
    background-color: #ffffff;
    color: #2d7a4f;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.cta-button-large:hover {
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

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

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

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
}

.additional-info {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.info-container {
    max-width: 900px;
    margin: 0 auto;
}

.info-container h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.faq-item {
    margin-bottom: 35px;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2d7a4f;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.7;
}

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

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin: 0 auto 30px;
    width: 100px;
    height: 100px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2d7a4f;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 40px;
    color: #6c757d;
}

.order-details {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.order-details h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.order-details p {
    font-size: 16px;
    margin-bottom: 10px;
}

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

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.next-steps ol {
    font-size: 16px;
    line-height: 1.8;
    padding-left: 20px;
}

.next-steps ol li {
    margin-bottom: 15px;
}

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

.button-primary,
.button-secondary {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.button-primary {
    background-color: #2d7a4f;
    color: #ffffff;
}

.button-primary:hover {
    background-color: #1f5738;
}

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

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

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

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

.legal-container h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.last-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

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

.legal-container h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

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

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

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

.legal-container a:hover {
    color: #1f5738;
}

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

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

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

    .split-container,
    .content-wrapper,
    .contact-container {
        flex-direction: column;
    }

    .benefits-grid,
    .approach-grid {
        flex-direction: column;
    }

    .benefit-card,
    .approach-card {
        flex: 1 1 100%;
    }

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

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

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

    .cookie-buttons {
        justify-content: center;
    }

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