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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

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

.logo {
    height: 40px;
    width: auto;
}

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

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav ul li a:hover {
    color: #24bc29;
}

/* Hero Section */
.hero {
    padding: 8rem 0;
    background-image: url('img/hero_left.png'), url('img/hero_right.png');
    background-size: auto 100%;
    background-position: left top, right top;
    background-repeat: no-repeat;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.50);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.hero-left {
    flex: 1;
    text-align: center;
}

.hero-left h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.hero-left h2 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: #666;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #333;
}

.check-icon {
    font-size: 1rem;
}

.btn-primary {
    background-color: #24bc29;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #24bc29;
}

.hero-right {
    flex: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    text-align: center;
    padding: 1.5rem 1rem;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #24bc29;
    margin-bottom: 0.75rem;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

/* User Scenarios */
.user-scenarios {
    padding: 5rem 0;
    background-color: #f9f9f9;
    margin-top: -2rem;
    border-radius: 32px 32px 0 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #333;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.scenario-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.scenario-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(36, 188, 41, 0.15);
    margin-left: auto;
    margin-right: auto;
}

.scenario-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.scenario-card p {
    color: #666;
}

/* Features Section */
.features {
    padding: 4rem 0;
}

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

.feature-card {
    background-color: #dafeee;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.feature-card p {
    color: #666;
}

/* How It Works */
.how-it-works {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

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

.step-number {
    width: 50px;
    height: 50px;
    background-color: #24bc29;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 auto 1rem;
}

.step-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.step-line {
    width: 100px;
    height: 2px;
    background-color: #e0e0e0;
}

/* Important Information */
.important-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.important-info p {
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 4rem 0;
    text-align: center;
}

.cta .btn-primary {
    margin-top: 1rem;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 35px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-info p {
    color: #ccc;
}

.footer-links ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.footer-links ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #fff;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
    font-size: 0.9rem;
}

/* Loan Details Page */
.loan-details {
    padding: 4rem 0;
}

.loan-params {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.param-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.param-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.param-card p {
    font-size: 1.2rem;
    font-weight: 500;
    color: #24bc29;
}

.representative-example {
    background-color: #dafeee;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.example-content {
    flex: 1;
}

.example-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.example-content p {
    margin-bottom: 0.75rem;
    color: #666;
    line-height: 1.6;
}

.example-details {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.example-details p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.example-details p:last-child {
    margin-bottom: 0;
}

.example-image {
    flex: 1;
    min-width: 250px;
}

.example-screenshot {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: 12px;
}

/* Why Kumuha Cash Page */
.why-mabuti {
    padding: 4rem 0;
}

.why-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.why-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.why-card p {
    color: #666;
}

/* FAQ Page */
.faq {
    padding: 4rem 0;
}

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

.faq-item {
    margin-bottom: 1rem;
    background-color: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f0f0f0;
}

.faq-question span:first-child {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.faq-icon {
    font-size: 1.5rem;
    color: #24bc29;
    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;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.faq-answer ul {
    color: #666;
    line-height: 1.7;
    margin: 0.5rem 0 0.75rem 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.25rem;
}

/* Contact Page */
.contact {
    padding: 4rem 0;
}

.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-intro p {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-card p {
    color: #666;
}

.company-info {
    background-color: #dafeee;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.company-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.company-info p {
    color: #666;
}

.company-info-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.company-info-left,
.company-info-right {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.company-info-left h3,
.company-info-right h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #24bc29;
}

.company-info-left p,
.company-info-right p {
    color: #666;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.company-info-left p:last-child,
.company-info-right p:last-child {
    margin-bottom: 0;
}

.fraud-warning {
    background-color: #fff9e6;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #c3e664;
}

.fraud-warning p {
    color: #8b7500;
    font-weight: 500;
}

.privacy-guide {
    text-align: center;
}

.privacy-guide a {
    color: #24bc29;
    text-decoration: none;
}

.privacy-guide a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .scenarios-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-line {
        width: 2px;
        height: 50px;
    }
    
    .loan-params {
        grid-template-columns: 1fr;
    }
    
    .why-content {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links ul {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 0.5rem;
    }
}