/* ===============================================
   RESET & BASE STYLES
   =============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #65DA61;
    --black: #040404;
    --light-green: #D6F47A;
    --dark-gray: #4C4C4C;
    --gray: #9E9E9E;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(4, 4, 4, 0.08);
    --shadow-md: 0 4px 16px rgba(4, 4, 4, 0.12);
    --shadow-lg: 0 8px 32px rgba(4, 4, 4, 0.16);
    --border-radius: 16px;
    --border-radius-sm: 12px;
    --border-radius-lg: 24px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

/* ===============================================
   BUTTONS
   =============================================== */
.btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: inline-block;
    text-decoration: none;
    padding: 14px 32px;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(101, 218, 97, 0.3);
}

.btn-primary:hover {
    background-color: #52C84E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(101, 218, 97, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

.btn-secondary:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

/* ===============================================
   HEADER
   =============================================== */
.header {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 20px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 24px;
}

.logo-icon {
    background-color: var(--primary-green);
    color: var(--white);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 800;
}

.logo-text {
    color: var(--black);
}

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

.nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-header {
    padding: 12px 28px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow-md);
    z-index: 999;
    padding: 24px;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    color: var(--dark-gray);
    text-decoration: none;
    font-weight: 500;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    transition: background-color 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: #f5f5f5;
    color: var(--primary-green);
}

.btn-mobile-menu {
    margin-top: 8px;
    width: 100%;
}

/* ===============================================
   HERO SECTION
   =============================================== */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(214, 244, 122, 0.15) 0%, rgba(101, 218, 97, 0.05) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-headline {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--black);
}

.hero-subheadline {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
}

.trust-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
}

.trust-icon svg {
    width: 100%;
    height: 100%;
}

.trust-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-gray);
}

.hero-image {
    position: relative;
    max-width: 450px;
    margin-left: 55px;
}

.hero-image img {
    width: 100%;
    max-height: 750px;
    height: auto;
    object-fit: contain;
}

/* ===============================================
   SECTION HEADER
   =============================================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
}

/* ===============================================
   FEATURES SECTION
   =============================================== */
.features {
    padding: 100px 0;
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 40px 32px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===============================================
   HOW IT WORKS SECTION
   =============================================== */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(101, 218, 97, 0.05) 0%, rgba(214, 244, 122, 0.08) 100%);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.step-reverse {
    direction: rtl;
}

.step-reverse .step-content {
    direction: ltr;
}

.step-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 420px;
    margin: 0 auto;
}

.step-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .step-image {
        padding: 16px;
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .step-image {
        padding: 12px;
        max-width: 280px;
    }
}

.step-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
}

.step-description {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
}

/* ===============================================
   STATS SECTION
   =============================================== */
.stats {
    padding: 100px 0;
    background-color: var(--black);
    color: var(--white);
}

.stats .section-title {
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
    background-color: rgba(101, 218, 97, 0.1);
    border-radius: var(--border-radius);
    border: 2px solid rgba(101, 218, 97, 0.2);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
}

.stats-disclaimer {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: var(--gray);
    font-style: italic;
}

/* ===============================================
   TESTIMONIALS SECTION
   =============================================== */
.testimonials {
    padding: 100px 0;
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    padding: 32px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 24px;
    border: 4px solid var(--primary-green);
}

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

.testimonial-text {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.testimonial-location {
    font-size: 14px;
    color: var(--gray);
}

/* ===============================================
   CTA SECTION
   =============================================== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, #52C84E 100%);
    color: var(--white);
}

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

.cta-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-section .btn-primary {
    background-color: var(--white);
    color: var(--primary-green);
}

.cta-section .btn-primary:hover {
    background-color: var(--light-green);
    color: var(--black);
}

/* ===============================================
   FAQ SECTION
   =============================================== */
.faq {
    padding: 100px 0;
    background-color: #FAFAFA;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(101, 218, 97, 0.05);
}

.faq-icon {
    font-size: 28px;
    color: var(--primary-green);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===============================================
   FOOTER
   =============================================== */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 80px 0 32px 0;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--light-gray);
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 40px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--light-gray);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    color: #FFFFFF;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
}

.trust-badge svg {
    color: #65DA61;
    flex-shrink: 0;
}

.trust-badge span {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .footer-badges {
        gap: 12px;
    }
    
    .trust-badge {
        padding: 10px 12px;
        font-size: 11px;
    }
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    margin-bottom: 40px;
}

.disclaimer-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.disclaimer-text {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 16px;
}

.disclaimer-text:last-child {
    margin-bottom: 0;
}

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

.footer-bottom p {
    color: var(--gray);
    font-size: 14px;
}

/* ===============================================
   RESPONSIVE DESIGN
   =============================================== */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-headline {
        font-size: 42px;
    }

    .hero-subheadline {
        font-size: 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .btn-header {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-headline {
        font-size: 36px;
    }

    .hero-subheadline {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .trust-badges {
        grid-template-columns: 1fr;
    }

    .hero-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-image img {
        max-height: 450px;
    }

    .section-title {
        font-size: 32px;
    }

    .features,
    .how-it-works,
    .stats,
    .testimonials,
    .cta-section,
    .faq {
        padding: 60px 0;
    }

    .step {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .step-reverse {
        direction: ltr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stat-number {
        font-size: 42px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-description {
        font-size: 18px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-disclaimer {
        padding: 28px 0;
    }

    .disclaimer-title {
        font-size: 20px;
    }

    .disclaimer-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }

    .step-title {
        font-size: 24px;
    }

    .stat-number {
        font-size: 36px;
    }

    .cta-title {
        font-size: 28px;
    }
}

/* ===============================================
   ANIMATIONS
   =============================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll offset for fixed header */
section {
    scroll-margin-top: 88px;
}
/* ===============================================
   TEXT PAGE STYLES
   =============================================== */

/* Page Header */
.text-page-header {
    padding: 80px 0 60px 0;
    background-color: var(--white);
    border-bottom: 2px solid #E5E5E5;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--primary-green);
}

.breadcrumbs span {
    color: var(--gray);
}

.breadcrumbs span:last-child {
    color: var(--dark-gray);
    font-weight: 500;
}

.text-page-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.1;
}

.text-page-subtitle {
    font-size: 16px;
    color: var(--gray);
    font-weight: 500;
}

/* Content Layout */
.text-page-content {
    padding: 100px 0;
    background-color: var(--white);
}

.content-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 80px;
    align-items: start;
}

/* Side Navigation */
.content-nav {
    position: sticky;
    top: 120px;
}

.content-nav-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.content-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.content-nav-list a {
    color: var(--gray);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    transition: all 0.3s ease;
    display: block;
    border-left: 2px solid transparent;
    padding-left: 16px;
}

.content-nav-list a:hover {
    color: var(--black);
    border-left-color: var(--primary-green);
}

/* Main Content */
.content-main {
    max-width: 800px;
}

.content-section {
    margin-bottom: 80px;
    scroll-margin-top: 120px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.section-heading {
    font-size: 36px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 40px;
    line-height: 1.2;
}

.content-section h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
    margin-top: 48px;
}

.content-section h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    margin-top: 36px;
}

.content-section h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 12px;
}

.content-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 24px;
}

.content-section p:last-child {
    margin-bottom: 0;
}

.content-section ul {
    margin: 24px 0;
    padding-left: 0;
    list-style: none;
}

.content-section ul li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.content-section ul li:before {
    content: "•";
    position: absolute;
    left: 12px;
    color: var(--primary-green);
    font-weight: 700;
}

.content-section strong {
    font-weight: 600;
    color: var(--black);
}

/* Info Box */
.info-box {
    padding: 32px 0;
    margin-bottom: 48px;
}

.info-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin: 0;
}

/* Subsections */
.subsection {
    margin-bottom: 48px;
}

.subsection:last-child {
    margin-bottom: 0;
}

/* Info List */
.info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 32px 0;
}

.info-item {
    padding: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid #E5E5E5;
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-item h5 {
    margin-bottom: 8px;
    font-size: 17px;
}

.info-item p {
    margin: 0;
    font-size: 16px;
    color: var(--gray);
}

/* Table Styles */
.table-responsive {
    overflow-x: auto;
    margin: 40px 0;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
}

.info-table thead {
    background-color: var(--black);
}

.info-table thead th {
    padding: 20px 24px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

.info-table tbody tr {
    border-bottom: 1px solid #E5E5E5;
}

.info-table tbody tr:last-child {
    border-bottom: none;
}

.info-table tbody td {
    padding: 24px;
    font-size: 16px;
    color: var(--dark-gray);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.badge-yes {
    background-color: var(--primary-green);
    color: var(--white);
}

.badge-no {
    background-color: #E5E5E5;
    color: var(--dark-gray);
}

/* Definition List */
.definition-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px 0;
}

.definition-item {
    padding: 0;
    padding-bottom: 32px;
    border-bottom: 1px solid #E5E5E5;
}

.definition-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.definition-item h4 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 20px;
}

.definition-item p {
    margin-bottom: 12px;
}

.definition-item p:last-child {
    margin-bottom: 0;
}

.definition-item ul {
    margin: 12px 0 0 0;
}

/* Rights List */
.rights-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 40px 0;
}

.rights-item {
    padding: 0;
}

.rights-item h4 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--black);
    font-size: 20px;
}

.rights-item p {
    margin-bottom: 12px;
}

.rights-item p:last-child {
    margin-bottom: 0;
}

.rights-item ul {
    margin: 12px 0 0 0;
}

/* Contact Info */
.contact-info {
    padding: 0;
    margin-top: 32px;
}

.contact-info p {
    margin-bottom: 12px;
    font-size: 17px;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.contact-info a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

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

.content-section a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

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

/* Note */
.note {
    padding: 0;
    padding-left: 24px;
    border-left: 3px solid var(--primary-green);
    font-size: 16px;
    color: var(--gray);
    margin: 24px 0;
}

/* Responsive Design for Text Pages */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .content-nav {
        position: relative;
        top: 0;
        padding-bottom: 40px;
        border-bottom: 1px solid #E5E5E5;
    }

    .content-nav-list {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }

    .content-nav-list a {
        border-left: none;
        border-bottom: 2px solid transparent;
        padding-left: 0;
        padding-bottom: 8px;
    }

    .content-nav-list a:hover {
        border-left-color: transparent;
        border-bottom-color: var(--primary-green);
    }

    .text-page-title {
        font-size: 42px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-form-section {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .text-page-header {
        padding: 60px 0 40px 0;
    }

    .text-page-title {
        font-size: 36px;
    }

    .text-page-subtitle {
        font-size: 15px;
    }

    .text-page-content {
        padding: 80px 0;
    }

    .section-heading {
        font-size: 32px;
        margin-bottom: 32px;
    }

    .content-section h3 {
        font-size: 22px;
    }

    .content-section h4 {
        font-size: 19px;
    }

    .content-section p,
    .content-section ul li {
        font-size: 16px;
    }

    .info-table thead th,
    .info-table tbody td {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .text-page-title {
        font-size: 28px;
    }

    .section-heading {
        font-size: 26px;
    }

    .content-section h3 {
        font-size: 20px;
    }

    .content-section h4 {
        font-size: 18px;
    }

    .content-section p,
    .content-section ul li {
        font-size: 15px;
    }

    .info-table {
        font-size: 14px;
    }

    .info-table thead th,
    .info-table tbody td {
        padding: 12px 16px;
    }
}

/* ===============================================
   CONTACT PAGE STYLES
   =============================================== */

.contact-page {
    padding: 80px 0 100px 0;
    background-color: var(--white);
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.contact-card {
    padding: 40px 32px;
    text-align: center;
    border: 1px solid #E5E5E5;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary-green);
    box-shadow: var(--shadow-sm);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
}

.contact-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.contact-card-text {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 8px;
}

.contact-card-text:last-child {
    margin-bottom: 0;
}

.contact-card-text a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
}

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

/* Contact Form Section */
.contact-form-section {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-form-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
}

.contact-form-subtitle {
    font-size: 17px;
    color: var(--gray);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: flex;
    gap: 24px;
}

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

.form-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.required {
    color: var(--primary-green);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    color: var(--black);
    background-color: var(--white);
    border: 1px solid #E5E5E5;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(101, 218, 97, 0.1);
}

.form-input.error,
.form-textarea.error {
    border-color: #E53E3E;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-error {
    color: #E53E3E;
    font-size: 14px;
    margin-top: 6px;
    display: block;
    min-height: 20px;
}

.form-hint {
    color: var(--gray);
    font-size: 14px;
    margin-top: 6px;
}

.form-actions {
    margin-top: 8px;
}

.form-actions .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-loader svg {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Messages */
.form-message {
    padding: 16px 20px;
    border-radius: var(--border-radius-sm);
    margin: 24px 0;
    font-size: 15px;
    font-weight: 500;
}

.form-message.success {
    background-color: rgba(101, 218, 97, 0.1);
    color: #2D8A28;
    border: 1px solid rgba(101, 218, 97, 0.3);
}

.form-message.error {
    background-color: rgba(229, 62, 62, 0.1);
    color: #C53030;
    border: 1px solid rgba(229, 62, 62, 0.3);
}

/* Loading State */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ===============================================
   UNSUBSCRIBE PAGE STYLES - LGY LOANS
   =============================================== */

.unsubscribe-page {
    padding: 80px 0 100px 0;
    background-color: #FFFFFF;
}

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

.unsubscribe-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #65DA61;
    background-color: rgba(101, 218, 97, 0.1);
    border-radius: 50%;
}

.unsubscribe-title {
    font-size: 42px;
    font-weight: 800;
    color: #040404;
    margin-bottom: 16px;
    line-height: 1.2;
}

.unsubscribe-description {
    font-size: 17px;
    line-height: 1.7;
    color: #9E9E9E;
    margin-bottom: 48px;
}

.unsubscribe-form-card {
    background-color: #FFFFFF;
    border: 1px solid #E5E5E5;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.unsubscribe-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.unsubscribe-options {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 8px;
}

.unsubscribe-option {
    flex: 1;
    position: relative;
    cursor: pointer;
}

.unsubscribe-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #4C4C4C;
    transition: all 0.3s ease;
}

.option-label svg {
    color: #9E9E9E;
    transition: all 0.3s ease;
}

.unsubscribe-option input[type="radio"]:checked + .option-label {
    border-color: #65DA61;
    background-color: rgba(101, 218, 97, 0.05);
    color: #040404;
}

.unsubscribe-option input[type="radio"]:checked + .option-label svg {
    color: #65DA61;
}

.form-field {
    text-align: left;
}

.unsubscribe-note {
    margin-top: 24px;
    font-size: 14px;
    color: #9E9E9E;
    text-align: center;
}

/* Form message for unsubscribe page */
.unsubscribe-page .form-message {
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
}

.unsubscribe-page .form-message.success {
    background-color: rgba(101, 218, 97, 0.1);
    color: #2D8A28;
    border: 1px solid rgba(101, 218, 97, 0.3);
}

.unsubscribe-page .form-message.error {
    background-color: rgba(229, 62, 62, 0.1);
    color: #C53030;
    border: 1px solid rgba(229, 62, 62, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .unsubscribe-page {
        padding: 60px 0 80px 0;
    }

    .unsubscribe-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }

    .unsubscribe-icon svg {
        width: 48px;
        height: 48px;
    }

    .unsubscribe-title {
        font-size: 36px;
    }

    .unsubscribe-description {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .unsubscribe-form-card {
        padding: 32px 24px;
    }

    .unsubscribe-options {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .unsubscribe-title {
        font-size: 32px;
    }

    .unsubscribe-description {
        font-size: 15px;
    }

    .unsubscribe-form-card {
        padding: 24px 20px;
    }
}

/* ===============================================
   APPLY PAGE STYLES
   =============================================== */

.apply-header {
    padding: 100px 0 60px 0;
    background-color: var(--white);
    text-align: center;
}

.apply-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.apply-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
    line-height: 1.2;
}

.apply-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 40px;
}

.apply-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.apply-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-gray);
    font-size: 16px;
    font-weight: 500;
}

.apply-feature svg {
    color: var(--primary-green);
    flex-shrink: 0;
}

.apply-form-section {
    padding: 0 0 80px 0;
    background-color: var(--white);
}

/* Responsive */
@media (max-width: 768px) {
    .apply-header {
        padding: 80px 0 40px 0;
    }

    .apply-title {
        font-size: 36px;
    }

    .apply-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .apply-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .apply-form-section {
        padding: 0 0 60px 0;
    }
}

@media (max-width: 480px) {
    .apply-header {
        padding: 70px 0 30px 0;
    }

    .apply-title {
        font-size: 32px;
    }

    .apply-subtitle {
        font-size: 15px;
    }
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.app-store-btn:hover {
    transform: translateY(-2px);
}

.app-store-btn svg {
    width: 32px;
    height: 32px;
}

.app-btn-text {
    font-size: 12px;
    opacity: 0.8;
}

.app-btn-store {
    font-size: 18px;
    font-weight: 700;
}

/* ===============================================
   LOGIN PAGE STYLES
   =============================================== */

.login-page {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(101, 218, 97, 0.03) 0%, rgba(4, 4, 4, 0.02) 100%);
}

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

.login-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(4, 4, 4, 0.08);
}

.login-header {
    text-align: center;
    margin-bottom: 32px;
}

.login-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-green) 0%, #4AB84A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.login-icon svg {
    color: var(--white);
}

.login-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
}

.login-subtitle {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.5;
}

.login-form {
    margin-bottom: 24px;
}

.login-form .form-group {
    margin-bottom: 24px;
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    font-size: 14px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--dark-gray);
    font-weight: 500;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-green);
}

.forgot-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: #4AB84A;
    text-decoration: underline;
}

.btn-block {
    width: 100%;
}

.login-footer {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--light-gray);
}

.login-footer p {
    margin: 8px 0;
    font-size: 14px;
    color: var(--gray);
}

.login-footer a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.login-footer a:hover {
    text-decoration: underline;
}

.help-text {
    margin-top: 12px !important;
}

.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    font-size: 14px;
    color: var(--gray);
    font-weight: 500;
}

.security-note svg {
    color: var(--primary-green);
}

/* Loading state */
.btn-loader {
    display: inline-block;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .login-page {
        padding: 60px 0;
    }

    .login-card {
        padding: 32px 24px;
    }

    .login-title {
        font-size: 28px;
    }

    .login-subtitle {
        font-size: 15px;
    }

    .login-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .login-card {
        padding: 24px 20px;
    }

    .login-title {
        font-size: 24px;
    }

    .login-icon {
        width: 64px;
        height: 64px;
    }
}