/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a472a;
}

.nav-links {
    display: none;
    gap: 35px;
}

.nav-links a {
    color: #4a5568;
    font-weight: 500;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2c5f2d;
    border-bottom-color: #2c5f2d;
}

.nav-toggle {
    display: flex;
    font-size: 1.8rem;
    color: #2d3748;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }
}

/* Hero Split Section */
.hero-split {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-left {
    margin-bottom: 40px;
}

.hero-left h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-right img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 968px) {
    .hero-content {
        display: flex;
        align-items: center;
        gap: 60px;
    }

    .hero-left {
        flex: 1;
        margin-bottom: 0;
    }

    .hero-right {
        flex: 1;
    }

    .hero-left h1 {
        font-size: 3.2rem;
    }
}

/* CTAs */
.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-primary {
    background-color: #2c5f2d;
    color: #ffffff;
}

.cta-primary:hover {
    background-color: #1e4620;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 95, 45, 0.3);
}

.cta-secondary {
    background-color: transparent;
    color: #2c5f2d;
    border: 2px solid #2c5f2d;
}

.cta-secondary:hover {
    background-color: #2c5f2d;
    color: #ffffff;
}

/* Split Container (Core Pattern) */
.split-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.split-text,
.split-image {
    margin-bottom: 40px;
}

.split-text h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.split-text p {
    color: #4a5568;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.split-image img {
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

@media (min-width: 968px) {
    .split-container {
        display: flex;
        align-items: center;
        gap: 60px;
    }

    .split-text,
    .split-image {
        flex: 1;
        margin-bottom: 0;
    }

    .split-container.reverse {
        flex-direction: row-reverse;
    }
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a202c;
    font-weight: 700;
}

/* Problem Section */
.problem-section {
    background-color: #f7fafc;
}

/* Trust Section */
.trust-section {
    background-color: #1a472a;
    color: #ffffff;
    padding: 60px 0;
}

.trust-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #68d391;
    margin-bottom: 10px;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: #e2e8f0;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    margin: 25px 0;
}

.benefits-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: #4a5568;
    font-size: 1.05rem;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Services Grid */
.services-detailed {
    background-color: #f7fafc;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 35px;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card.featured {
    border: 2px solid #2c5f2d;
}

.service-card .badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 15px;
}

.service-card p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-card .price {
    font-size: 1.8rem;
    color: #2c5f2d;
    font-weight: 700;
    margin: 25px 0;
}

.service-cta {
    display: inline-block;
    width: 100%;
    padding: 14px 20px;
    background-color: #2c5f2d;
    color: #ffffff;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #1e4620;
}

/* Process Section */
.process-steps {
    margin-top: 30px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-content h4 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 8px;
}

.step-content p {
    color: #4a5568;
}

/* Testimonials */
.testimonials-section {
    background-color: #f7fafc;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.testimonial {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    flex: 1;
    min-width: 300px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 1.1rem;
    color: #2d3748;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.testimonial-author strong {
    color: #1a202c;
    font-size: 1.05rem;
}

.testimonial-author span {
    color: #718096;
    font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
    background-color: #edf2f7;
}

.cta-section-alt {
    background-color: #1a472a;
    color: #ffffff;
    text-align: center;
}

.cta-section-alt h2 {
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-section-alt p {
    color: #e2e8f0;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Checklist */
.checklist {
    list-style: none;
    margin: 25px 0;
}

.checklist li {
    padding: 10px 0 10px 35px;
    position: relative;
    color: #4a5568;
    font-size: 1.05rem;
}

.checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
    font-size: 1.3rem;
}

/* Form Section */
.form-section {
    background-color: #f7fafc;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 15px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #4a5568;
    margin-bottom: 35px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-group input {
    margin-right: 10px;
    margin-top: 4px;
    flex-shrink: 0;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.95rem;
}

.checkbox-group a {
    color: #2c5f2d;
    text-decoration: underline;
}

.btn-submit {
    padding: 16px 32px;
    background-color: #2c5f2d;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #1e4620;
}

/* Footer */
.main-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 60px 0 30px;
}

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

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

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

.footer-section p {
    color: #cbd5e0;
    line-height: 1.7;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-section a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2d3748;
    color: #718096;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-btn {
    display: inline-block;
    padding: 16px 28px;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(44, 95, 45, 0.4);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background-color: #1e4620;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 95, 45, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 25px;
    box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #1e4620;
}

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

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a202c;
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-actions {
        flex-shrink: 0;
    }
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2c5f2d 0%, #1a472a 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-hero .hero-subtitle {
    font-size: 1.3rem;
    color: #e2e8f0;
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 968px) {
    .page-hero h1 {
        font-size: 3.5rem;
    }
}

/* About Page Styles */
.story-section {
    background-color: #ffffff;
}

.values-section {
    background-color: #f7fafc;
}

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

.value-item {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 1.4rem;
    color: #1a202c;
    margin-bottom: 15px;
}

.value-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    background-color: #ffffff;
}

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

.team-member {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.team-member img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
    border: 4px solid #2c5f2d;
}

.team-member h3 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 8px;
}

.team-member .role {
    color: #2c5f2d;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member .bio {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Credentials Section */
.credentials-section {
    background-color: #f7fafc;
}

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

.credentials-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: #4a5568;
    font-size: 1.05rem;
}

.credentials-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
    font-size: 1.5rem;
}

/* Services Page Styles */
.services-full {
    background-color: #ffffff;
}

.service-detail {
    margin-bottom: 80px;
}

.service-detail-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-detail-text {
    margin-bottom: 40px;
}

.service-detail-text h2 {
    font-size: 2.2rem;
    color: #1a202c;
    margin-bottom: 15px;
}

.service-lead {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 25px;
    font-weight: 500;
}

.service-detail-text h3 {
    font-size: 1.4rem;
    color: #1a202c;
    margin: 30px 0 15px;
}

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

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: #4a5568;
}

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

.service-pricing-box {
    background-color: #f7fafc;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #2c5f2d;
    position: relative;
}

.service-pricing-box.highlighted {
    background-color: #e6f4ea;
}

.service-pricing-box .badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #2c5f2d;
    color: #ffffff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-main {
    font-size: 2rem;
    color: #2c5f2d;
    font-weight: 700;
    margin-bottom: 8px;
}

.price-note {
    color: #718096;
    font-size: 0.95rem;
    margin: 0;
}

@media (min-width: 968px) {
    .service-detail-content {
        display: flex;
        align-items: center;
        gap: 60px;
    }

    .service-detail-text,
    .service-detail-image {
        flex: 1;
        margin-bottom: 0;
    }

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

/* Comparison Section */
.comparison-section {
    background-color: #f7fafc;
}

.comparison-table {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.comparison-column {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 10px;
    flex: 1;
    min-width: 280px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.comparison-column h3 {
    font-size: 1.5rem;
    color: #1a202c;
    margin-bottom: 15px;
}

.comparison-column p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    background-color: #ffffff;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    flex: 1;
    min-width: 100%;
    padding: 30px;
    background-color: #f7fafc;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .faq-item {
        min-width: calc(50% - 15px);
    }
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #1a202c;
    margin-bottom: 12px;
}

.faq-item p {
    color: #4a5568;
    line-height: 1.7;
}

/* Contact Page Styles */
.contact-info-section {
    background-color: #ffffff;
}

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

.contact-detail h3 {
    font-size: 1.4rem;
    color: #1a202c;
    margin-bottom: 12px;
}

.contact-detail p {
    color: #4a5568;
    line-height: 1.8;
}

.contact-detail a {
    color: #2c5f2d;
    font-weight: 600;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: #718096;
    margin-top: 8px;
}

.map-placeholder {
    background-color: #e2e8f0;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    margin-top: 20px;
}

.alt-contact-section {
    background-color: #f7fafc;
    text-align: center;
}

.alt-contact-section h2 {
    margin-bottom: 20px;
}

.alt-contact-section p {
    color: #4a5568;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.visit-section {
    background-color: #ffffff;
}

.availability-section {
    background-color: #f7fafc;
}

.availability-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.team-availability {
    flex: 1;
    min-width: 250px;
    text-align: center;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.team-availability img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 15px;
    object-fit: cover;
}

.team-availability h3 {
    font-size: 1.2rem;
    color: #1a202c;
    margin-bottom: 8px;
}

.team-availability p {
    color: #4a5568;
    font-size: 0.95rem;
}

.availability-hours {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #718096;
}

/* Thanks Page Styles */
.thanks-section {
    background-color: #f7fafc;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 20px;
}

.thanks-lead {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 30px;
}

.selected-service {
    background-color: #e6f4ea;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.selected-service p {
    margin: 0;
    color: #2d3748;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.step-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 25px;
    background-color: #f7fafc;
    border-radius: 8px;
}

.step-num {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 1.2rem;
    color: #1a202c;
    margin-bottom: 10px;
}

.step-item p {
    color: #4a5568;
    font-size: 0.95rem;
}

.thanks-info {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.thanks-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.thanks-info a {
    color: #2c5f2d;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin: 40px 0;
}

.social-proof {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.testimonial-short {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 10px;
}

.testimonial-author {
    color: #718096;
    font-size: 0.95rem;
}

.resources-section {
    background-color: #ffffff;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.resource-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f7fafc;
    border-radius: 10px;
    text-align: center;
}

.resource-card h3 {
    font-size: 1.4rem;
    color: #1a202c;
    margin-bottom: 12px;
}

.resource-card p {
    color: #4a5568;
    margin-bottom: 15px;
}

.resource-card a {
    color: #2c5f2d;
    font-weight: 600;
}

/* Legal Pages */
.legal-page {
    background-color: #ffffff;
    padding: 60px 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 10px;
}

.last-updated {
    color: #718096;
    margin-bottom: 40px;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    color: #1a202c;
    margin: 40px 0 20px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.legal-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #2d3748;
    margin: 25px 0 15px;
}

.legal-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
}

.legal-content th,
.legal-content td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.legal-content th {
    background-color: #f7fafc;
    font-weight: 600;
    color: #1a202c;
}

.legal-content td {
    color: #4a5568;
}

.legal-footer {
    max-width: 900px;
    margin: 50px auto 0;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.back-link {
    color: #2c5f2d;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

/* Responsive Utilities */
@media (max-width: 767px) {
    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}