/* ================= GLOBAL ================= */

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f4f6fb;
    color: #333;
}

section {
    padding: 80px 20px;
}

/* ================= HERO SECTION ================= */

.hero {
    background: linear-gradient(135deg, #4e73df, #1cc88a);
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero-content {
    max-width: 900px;
    margin: auto;
}

.hero h1 {
    font-size: 44px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    opacity: 0.95;
}

/* ================= ABOUT SECTION ================= */

.about {
    background: white;
}

.about-text {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #4e73df;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #555;
}

/* ================= FEATURES SECTION ================= */

.features {
    background: #eef2ff;
    text-align: center;
}

.features h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.feature-grid {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.card h3 {
    margin-bottom: 12px;
    color: #4e73df;
    font-size: 18px;
}

.card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* ================= STATS SECTION ================= */

.stats {
    background: linear-gradient(135deg, #4e73df, #224abe);
    color: white;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    text-align: center;
}

.stat-box {
    max-width: 250px;
}

.stat-box h2 {
    font-size: 42px;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 15px;
    opacity: 0.95;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
    }

    .about-text h2,
    .features h2 {
        font-size: 26px;
    }

    section {
        padding: 60px 15px;
    }
}