:root {
    --primary-color: #00843D;
    --secondary-color: #FFCD00;
    --dark-text: #222;
    --light-text: #fff;
    --light-bg: #f5f5f5;
    --card-bg: #fff;
    --section-padding: 60px 0;
    --border-radius: 8px;
    --box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-text);
    background-color: var(--light-bg);
    line-height: 1.6;
}

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

/* Header */
header {
    background-color: var(--light-bg);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo .love {
    color: var(--secondary-color);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: var(--transition);
    padding: 5px 10px;
}

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

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-text);
    padding: 120px 0 0 0;
    position: relative;
    margin-top: 64px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 60px;
}

.hero-content {
    flex: 1;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-visual {
    flex: 1;
    max-width: 400px;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: var(--light-text);
    color: var(--primary-color);
    padding: 12px 32px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background-color: var(--secondary-color);
    color: var(--dark-text);
}

.no-credit {
    font-size: 0.9rem;
    opacity: 0.8;
}

.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

/* How it Works Section */
.how-it-works {
    padding: var(--section-padding);
    text-align: center;
    background-color: var(--light-bg);
}

.how-it-works h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
}

.step {
    background: var(--card-bg);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    flex: 1;
    max-width: 280px;
    transition: var(--transition);
    text-align: center;
}

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

.step-icon {
    margin: 0 auto 20px;
    display: flex;
    justify-content: center;
}

.step h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step p {
    font-size: 0.95rem;
}

.step-arrow {
    display: flex;
    align-items: center;
}

.cta-center {
    margin-top: 40px;
}

/* Features Section */
.features {
    padding: var(--section-padding);
    background-color: white;
}

.features h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-left: 4px solid var(--secondary-color);
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.testimonials h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
}

.quote {
    margin-bottom: 15px;
}

.author {
    margin-top: 20px;
    text-align: right;
    font-style: italic;
    color: #666;
}

/* FAQ Section */
.faq {
    padding: var(--section-padding);
    background-color: white;
}

.faq h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.accordion-header {
    background-color: var(--card-bg);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.accordion-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--light-bg);
}

.accordion-content p {
    padding: 20px 0;
}

.accordion-header.active {
    background-color: var(--primary-color);
}

.accordion-header.active h3 {
    color: var(--light-text);
}

/* Call to Action Section */
.call-to-action {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--light-text);
    text-align: center;
}

.call-to-action h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.call-to-action p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo p {
    margin-top: 10px;
    font-weight: 600;
}

.footer-links h3,
.footer-related h3 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 10px;
    transition: var(--transition);
}

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

.footer-related p {
    color: #ccc;
    line-height: 1.8;
}

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

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column-reverse;
    }
    
    .hero-content, .hero-visual {
        flex: none;
        width: 100%;
    }
    
    .hero-visual {
        margin-bottom: 30px;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step {
        max-width: 100%;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.5rem 0;
    }
    
    .nav-toggle-label {
        display: block;
        padding: 1rem;
    }
    
    .nav-toggle-label span,
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        display: block;
        background: var(--primary-color);
        height: 2px;
        width: 2rem;
        position: relative;
    }
    
    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: '';
        position: absolute;
    }
    
    .nav-toggle-label span::before {
        bottom: 7px;
    }
    
    .nav-toggle-label span::after {
        top: 7px;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--light-bg);
        width: 100%;
        transform: scale(1, 0);
        transform-origin: top;
        transition: transform 0.3s ease-out;
    }
    
    nav ul {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    nav li {
        margin: 1rem 0;
    }
    
    .nav-toggle:checked ~ nav {
        transform: scale(1, 1);
    }
    
    .features-grid, 
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .how-it-works h2,
    .features h2,
    .testimonials h2,
    .faq h2,
    .call-to-action h2 {
        font-size: 1.8rem;
    }
}

/* Animations */
@keyframes fadeUp {
    from { 
        opacity: 0;
        transform: translateY(20px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.step,
.testimonial {
    animation: fadeUp 0.6s ease-out forwards;
}
