﻿/* HERO */
.rd-hero {
    background: url('/Content/Image/vegnew.jpeg') center/cover no-repeat;
    height: 360px;
    position: relative;
}

.rd-overlay {
    background: rgba(0,0,0,.65);
    color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

    .rd-overlay h1 {
        font-size: 48px;
        margin-bottom: 10px;
    }

    .rd-overlay p {
        font-size: 20px;
    }

/* INTRO */
.rd-intro {
    text-align: center;
    padding: 70px 15%;
}

    .rd-intro h2 {
        font-size: 34px;
        margin-bottom: 20px;
    }

/* FEATURES */
.rd-features {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    padding: 60px 8%;
}

.rd-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,.1);
    padding: 15px;
    text-align: center;
}

    .rd-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
    }

/* PROCESS */
.rd-process {
    background: #f5f9f5;
    padding: 70px 8%;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
    margin-top: 40px;
}

.step {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
}

    .step span {
        font-size: 36px;
        color: #2e7d32;
        font-weight: bold;
    }
