* {
    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.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

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

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

.hero-visual {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    color: #ffffff;
    padding: 4rem 2rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    max-width: 900px;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

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

.story-intro {
    background-color: #f9f9f9;
    padding: 5rem 2rem;
}

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

.opening-line {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c5f2d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.narrow-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.problem-reveal {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.content-wide.reverse {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
}

.text-block h2,
.text-block h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.text-block h3 {
    font-size: 1.8rem;
}

.text-block p {
    font-size: 1.1rem;
    margin-bottom: 1.3rem;
    color: #444;
}

.text-block a {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.text-block a:hover {
    opacity: 0.7;
}

.visual-block {
    flex: 1;
    background-color: #f0f0f0;
}

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

.insight-section {
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 5rem 2rem;
}

.insight-section h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.insight-section p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.insight-section a {
    color: #a8d5a8;
    text-decoration: none;
    font-weight: 600;
}

.trust-building {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.testimonial-inline {
    padding: 4rem 2rem;
    background-color: #1a1a1a;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card blockquote {
    border-left: 4px solid #2c5f2d;
    padding-left: 2rem;
}

.testimonial-card p {
    font-size: 1.4rem;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-card cite {
    font-size: 1rem;
    color: #a8d5a8;
    font-style: normal;
}

.benefits-reveal {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.benefits-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.benefit-item {
    padding: 2rem;
    background-color: #f9f9f9;
    border-left: 4px solid #2c5f2d;
}

.benefit-item h4 {
    font-size: 1.5rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1.05rem;
    color: #444;
}

.benefit-item a {
    color: #2c5f2d;
    text-decoration: none;
    font-weight: 600;
}

.service-preview {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.content-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-intro {
    font-size: 1.2rem;
    color: #555;
}

.pricing-reveal {
    padding: 4rem 2rem 6rem;
    background-color: #ffffff;
}

.pricing-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background-color: #ffffff;
    border: 2px solid #e0e0e0;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border-color: #2c5f2d;
    border-width: 3px;
    background-color: #fafffe;
}

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

.service-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.feature-list li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #444;
}

.feature-list li:before {
    content: "✓ ";
    color: #2c5f2d;
    font-weight: 700;
    margin-right: 0.5rem;
}

.cta-button,
.submit-button {
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    width: 100%;
}

.cta-button:hover,
.submit-button:hover {
    background-color: #234a24;
    transform: scale(1.02);
}

.cta-button:active,
.submit-button:active {
    transform: scale(0.98);
}

.form-section {
    padding: 6rem 2rem;
    background-color: #f9f9f9;
}

.form-section h2 {
    text-align: center;
    font-size: 2.3rem;
    margin-bottom: 1rem;
}

.form-section > .narrow-content > p {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #555;
}

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

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

.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: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.final-cta {
    padding: 5rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

.centered {
    text-align: center;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.final-cta p {
    font-size: 1.15rem;
    opacity: 0.9;
}

.main-footer {
    background-color: #0f0f0f;
    color: #cccccc;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

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

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

.references {
    list-style: decimal;
    padding-left: 1.5rem;
}

.references li {
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-style: italic;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 10000;
    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;
    font-size: 0.95rem;
}

.cookie-content a {
    color: #a8d5a8;
    text-decoration: underline;
}

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

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

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

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

.cookie-btn.reject {
    background-color: #444;
    color: #ffffff;
}

.contact-page {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.contact-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-info {
    background-color: #f9f9f9;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #2c5f2d;
    margin-bottom: 0.5rem;
}

.contact-item p {
    font-size: 1.05rem;
    color: #444;
}

.legal-page {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.legal-page p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #444;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.thanks-page {
    padding: 6rem 2rem;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 4rem 3rem;
    border-radius: 8px;
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.service-selection-info {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.service-selection-info strong {
    color: #2c5f2d;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.2rem;
    }

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

    .content-wide,
    .content-wide.reverse {
        flex-direction: column;
    }

    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        max-width: 100%;
    }

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

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

    .nav-container {
        justify-content: center;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }
}
