* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #1f2937;
    background: #f9fafb;
}

/* HERO SPLIT */
.hero {
    display: flex;
    flex-wrap: wrap;
    min-height: 80vh;
    background: linear-gradient(to right, #eef2ff, #f0f9ff);
    padding: 60px 40px;
    align-items: center;
    gap: 40px;
}

.hero-left, .hero-right {
    flex: 1;
    min-width: 300px;
}

.hero-left h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #4b5563;
}

.btn {
    padding: 12px 24px;
    background: #2563eb;
    color: white;
    border-radius: 6px;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: #1d4ed8;
}

.hero-right {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.hero-right h3 {
    margin-bottom: 15px;
}

.hero-right ul {
    list-style: none;
}

.hero-right li {
    margin-bottom: 10px;
    color: #4b5563;
}

/* SECTIONS */
section {
    padding: 80px 40px;
}

.light {
    background: #f9fafb;
}

.dark {
    background: #111827;
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.dark .card {
    background: #1f2937;
    border: 1px solid #374151;
    color: white;
}

.card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
    background: #d1d5db;
}

.meta {
    font-size: 13px;
    color: #6b7280;
    margin: 8px 0;
}

.dark .meta {
    color: #9ca3af;
}

.card button {
    margin-top: 10px;
    width: 100%;
    padding: 10px;
    border: none;
    background: #2563eb;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

.card button a{
    color: white;
}

/* HOW IT WORKS */
.step {
    background: white;
    color: #1f2937;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

/* TESTIMONIALS */
.testimonial {
    background: #1f2937;
    color: white;
    padding: 20px;
    border-radius: 12px;
}

.testimonial h4 {
    margin-top: 10px;
    font-size: 14px;
    color: #9ca3af;
}

/* FAQ */
.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-question {
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    background: #f3f4f6;
}

.faq-answer {
    padding: 15px;
    display: none;
    color: #4b5563;
}
