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

:root {
    --primary-color: #1a5f3e;
    --secondary-color: #2ecc71;
    --accent-color: #e67e22;
    --dark-bg: #1a1a1a;
    --grey-bg: #f4f4f4;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --border-color: #dcdcdc;
    --success-color: #27ae60;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-cookie {
    padding: 10px 20px;
    border: none;
    background-color: var(--secondary-color);
    color: var(--white);
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.btn-cookie.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--white);
}

.btn-cookie.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.hero-fullscreen {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-color: #c8d6e5;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background-color: rgba(26, 26, 26, 0.65);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    max-width: 800px;
    text-align: center;
    color: var(--white);
    padding: 40px;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 22px;
    line-height: 1.6;
}

.story-section {
    padding: 80px 30px;
}

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

.narrow-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.inline-image {
    width: 100%;
    height: auto;
    margin: 35px 0;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.insight-block {
    padding: 80px 30px;
}

.dark-bg {
    background-color: var(--dark-bg);
    color: var(--white);
}

.dark-bg h2,
.dark-bg h3 {
    color: var(--white);
}

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

.container-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 30px;
}

.two-column-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.two-column-flex.reverse {
    flex-direction: row-reverse;
}

.col-content,
.col-image {
    flex: 1;
}

.col-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.col-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.col-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.problem-amplification {
    padding: 80px 30px;
    background-color: var(--grey-bg);
}

.problem-amplification h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.impact-list {
    list-style: none;
    margin: 30px 0;
}

.impact-list li {
    font-size: 18px;
    margin-bottom: 18px;
    padding-left: 30px;
    position: relative;
}

.impact-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.testimonial-inline {
    padding: 90px 30px;
    background-color: var(--primary-color);
}

.testimonial-large {
    max-width: 900px;
    margin: 0 auto;
    font-size: 26px;
    line-height: 1.6;
    font-style: italic;
    color: var(--white);
    text-align: center;
}

.testimonial-large cite {
    display: block;
    margin-top: 25px;
    font-size: 18px;
    font-style: normal;
    color: rgba(255, 255, 255, 0.8);
}

.solution-reveal {
    padding: 80px 30px;
}

.centered-heading {
    text-align: center;
    margin-bottom: 50px;
}

.centered-heading h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.subheading {
    font-size: 20px;
    color: var(--text-light);
}

.benefit-cards {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.benefit-card {
    flex: 1;
    text-align: center;
}

.benefit-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #e8e8e8;
}

.benefit-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.trust-building {
    padding: 80px 30px;
}

.grey-bg {
    background-color: var(--grey-bg);
}

.centered {
    text-align: center;
}

.citation {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
}

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

.services-preview {
    padding: 80px 30px;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.service-selection-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 50px;
}

.service-option {
    background-color: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    width: calc(33.333% - 20px);
    min-width: 280px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.service-option:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.service-option.selected {
    border-color: var(--secondary-color);
    background-color: rgba(46, 204, 113, 0.05);
}

.service-option h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-option p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.price-tag {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.select-service-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #134d2f;
}

.form-section {
    padding: 80px 30px;
    background-color: var(--grey-bg);
}

.form-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
}

.consultation-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input[readonly] {
    background-color: #f9f9f9;
}

.submit-btn {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: var(--success-color);
}

.final-cta {
    padding: 80px 30px;
}

.final-cta h3 {
    font-size: 36px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-link {
    display: inline-block;
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.cta-link:hover {
    color: var(--success-color);
    text-decoration: underline;
}

.references-section {
    padding: 60px 30px;
    background-color: var(--grey-bg);
}

.references-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.references-list {
    list-style: decimal;
    padding-left: 25px;
}

.references-list li {
    margin-bottom: 12px;
}

.references-list a {
    color: var(--text-dark);
    text-decoration: none;
}

.references-list a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.disclaimer-section {
    padding: 50px 30px;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.main-footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 60px 30px 30px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.page-header {
    padding: 80px 30px 60px;
    background-color: var(--grey-bg);
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.header-intro {
    font-size: 20px;
    color: var(--text-light);
}

.about-story {
    padding: 80px 30px;
}

.about-story h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.values-section {
    padding: 80px 30px;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
}

.expertise-section {
    padding: 80px 30px;
}

.expertise-list {
    margin-top: 40px;
}

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

.expertise-item h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.expertise-item p {
    font-size: 17px;
    line-height: 1.7;
}

.methodology-section {
    padding: 80px 30px;
}

.white-text {
    color: var(--white);
}

.methodology-steps {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.method-step {
    flex: 1;
}

.step-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.method-step h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--white);
}

.method-step p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.commitment-section {
    padding: 80px 30px;
}

.commitment-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.text-cta {
    display: inline-block;
    margin-top: 25px;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.text-cta:hover {
    color: var(--secondary-color);
}

.services-detailed {
    padding: 60px 30px;
}

.service-detailed-item {
    padding: 60px 0;
}

.service-content-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

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

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-description {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.service-features {
    list-style: none;
    margin: 25px 0;
}

.service-features li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-pricing {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--accent-color);
}

.select-service-detailed {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-detailed:hover {
    background-color: #134d2f;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.cta-section {
    padding: 60px 30px;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 18px;
}

.contact-content {
    padding: 80px 30px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-detail {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--grey-bg);
    border-radius: 8px;
}

.contact-note p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
}

.contact-image-block {
    flex: 1;
}

.contact-image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.directions-section {
    padding: 60px 30px;
}

.directions-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.directions-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.contact-cta {
    padding: 80px 30px;
}

.contact-cta h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta-button {
    display: inline-block;
    margin-top: 25px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 14px 30px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #134d2f;
}

.thanks-hero {
    padding: 100px 30px 60px;
    background-color: var(--grey-bg);
}

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

.success-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 19px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.confirmation-details {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

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

.selected-service-display {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

.next-steps {
    padding: 80px 30px;
}

.steps-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.step-item {
    flex: 1;
    text-align: center;
}

.step-number-circle {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step-item p {
    font-size: 16px;
    line-height: 1.6;
}

.additional-resources {
    padding: 80px 30px;
    background-color: var(--grey-bg);
}

.additional-resources h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.resource-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.resource-link {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 12px 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.resource-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.legal-page {
    padding: 80px 30px;
}

.legal-updated {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-content h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

.legal-content ul {
    margin: 15px 0;
    padding-left: 30px;
}

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

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 14px;
    }

    .ad-disclosure {
        flex-basis: 100%;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .two-column-flex,
    .two-column-flex.reverse {
        flex-direction: column;
    }

    .benefit-cards,
    .methodology-steps,
    .steps-grid {
        flex-direction: column;
    }

    .service-content-row,
    .service-content-row.reverse,
    .contact-layout {
        flex-direction: column;
    }

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

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

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