* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.ad-notice {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.main-nav {
    background-color: #fff;
    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: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5f3f;
}

.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: #2d5f3f;
}

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

.hero-section {
    background-color: #fff;
    padding: 3rem 2rem;
}

.hero-card {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.hero-content {
    flex: 1;
    padding: 3rem;
}

.hero-content h1 {
    font-size: 2.8rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    background-color: #e8ebe8;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-btn {
    background-color: #2d5f3f;
    color: #fff;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-btn:hover {
    background-color: #234a31;
    transform: translateY(-2px);
}

.problem-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.problem-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.problem-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.problem-card p {
    color: #666;
    line-height: 1.8;
}

.insight-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.insight-wrapper {
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.insight-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.insight-content {
    flex: 1;
}

.insight-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.insight-content p {
    margin-bottom: 1rem;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.8;
}

.citation {
    color: #2d5f3f;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.trust-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.testimonial-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    border-left: 4px solid #2d5f3f;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.testimonial-author {
    font-weight: 600;
    color: #2d5f3f;
}

.benefits-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.benefits-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.benefits-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 320px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.benefit-card img {
    width: 100%;
    height: 240px;
    display: block;
}

.benefit-content {
    padding: 1.5rem;
}

.benefit-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.benefit-content p {
    color: #666;
    line-height: 1.7;
}

.services-preview {
    padding: 4rem 2rem;
    background-color: #fff;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.service-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

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

.service-card.featured {
    border-color: #2d5f3f;
    border-width: 3px;
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #2d5f3f;
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-header {
    padding: 2rem 1.5rem 1rem;
}

.service-header h3 {
    font-size: 1.4rem;
    color: #1a1a1a;
}

.service-body {
    padding: 0 1.5rem 1.5rem;
    flex: 1;
}

.service-body p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

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

.service-footer {
    padding: 1.5rem;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d5f3f;
}

.select-service-btn {
    background-color: #2d5f3f;
    color: #fff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #234a31;
}

.form-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

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

.form-card > p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.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 select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

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

.submit-btn:hover {
    background-color: #234a31;
}

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

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

.disclaimer-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.disclaimer-card p {
    color: #555;
    line-height: 1.8;
}

.references-section {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

.references-section h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.references-list a {
    color: #2d5f3f;
    word-break: break-all;
}

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

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

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2d5f3f;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #2d5f3f;
    font-weight: 600;
}

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

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

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

.cookie-accept:hover {
    background-color: #234a31;
}

.cookie-reject {
    background-color: #e0e0e0;
    color: #333;
}

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

.page-header {
    background: linear-gradient(135deg, #2d5f3f 0%, #1a3a28 100%);
    color: #fff;
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

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

.about-content {
    padding: 4rem 2rem;
    background-color: #fff;
}

.about-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

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

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

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.values-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

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

.approach-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.approach-wrapper {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

.approach-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.approach-list li {
    padding: 0.7rem 0;
    color: #555;
    position: relative;
    padding-left: 1.8rem;
}

.approach-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: 700;
}

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

.approach-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.commitment-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

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

.commitment-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.services-detail {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.service-duration {
    color: #2d5f3f;
    font-weight: 600;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.service-guarantee {
    padding: 4rem 2rem;
    background-color: #fff;
}

.guarantee-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    border-left: 4px solid #2d5f3f;
}

.guarantee-card h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.contact-section {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-info-card {
    flex: 1;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-details p {
    color: #555;
    line-height: 1.7;
}

.contact-image-card {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    max-height: 500px;
}

.contact-image-card img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-note-section {
    padding: 3rem 2rem;
    background-color: #fff;
}

.note-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff9e6;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #ffc107;
}

.note-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.note-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.note-card a {
    color: #2d5f3f;
    font-weight: 600;
}

.thanks-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    min-height: 60vh;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #2d5f3f;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-card h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.submission-details {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.submission-details h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.submission-details p {
    color: #555;
    margin-bottom: 0.5rem;
}

.next-steps {
    color: #666;
    line-height: 1.7;
    margin: 2rem 0;
}

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

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-primary:hover {
    background-color: #234a31;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #333;
}

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

.legal-page {
    padding: 3rem 2rem;
    background-color: #fff;
}

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

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

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

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

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

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

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

.legal-content a {
    color: #2d5f3f;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.last-updated {
    color: #999;
    font-style: italic;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-card {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

    .insight-wrapper {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
    }

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

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

    .approach-wrapper {
        flex-direction: column;
    }

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

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

    .page-header h1 {
        font-size: 2rem;
    }
}