/* ===================================================
   HOME PAGE
   Hero bg path is relative to this CSS file:
   css/ → up one level → assets/images/
   =================================================== */

.hero {
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
       url('/assets/images/all.png') center / cover no-repeat;
    color: white;
    text-align: center;
    padding: 140px 20px;
}

.hero h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 750px;
    margin: 0 auto 35px;
}

.hero button {
    padding: 15px 40px;
    border: none;
    background: #D32F2F;
    color: white;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hero button:hover { background: #8B0000; }

/* About / Contact */
.section {
    padding: 80px 30px;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section p {
    font-size: 17px;
    max-width: 720px;
    margin: 12px auto;
    color: #374151;
}

.alt { background: #e5e7eb; }

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    font-size: 16px;
}

/* How It Works */
.how-it-works {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.how-it-works h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: auto;
}

.step {
    position: relative;
    background: #cecece;
    color: #111827;
    padding: 60px 24px 40px;
    border-radius: 22px;
    min-height: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.step-accent { background: #f7d9d9; }

.step-num {
    position: absolute;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: #c91616;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step p {
    font-size: 16px;
    line-height: 1.5;
    max-width: 220px;
    margin: 0 auto;
}

/* CTA */
.cta {
    background: #444444;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta h2     { margin-bottom: 15px; }
.cta p      { font-size: 16px; max-width: 600px; margin: 0 auto; }

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    background: #b34040;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    transition: background 0.2s;
}

.cta-btn:hover { background: #8B0000; }