<style>
    *{
        margin:0;
        padding:0;
        box-sizing:border-box;
    }

    body{
        font-family: 'Segoe UI', sans-serif;
        background: #fff8f0;
        color:#333;
    }

    
    /* HEADER */
    .hero{
        background: linear-gradient(135deg,#b30000,#ff4d4d);
        color:white;
        text-align:center;
        padding:120px 20px;
        position:relative;
    }
    
    

    .hero::after{
        content:"";
        position:absolute;
        bottom:0;
        left:0;
        width:100%;
        height:80px;
        background:linear-gradient(to top,#fff8f0,transparent);
    }

    .hero h1{
        font-size:52px;
        letter-spacing:3px;
        font-weight:bold;
        text-shadow:2px 2px 8px rgba(0,0,0,0.4);
    }

    .hero p{
        margin-top:15px;
        font-size:18px;
        opacity:0.9;
    }
    

    /* NAVIGATION */
    nav{
        background:#8b0000;
        display:flex;
        justify-content:center;
        flex-wrap:wrap;
        padding:15px 0;
        box-shadow:0 4px 10px rgba(0,0,0,0.15);
    }

    nav a{
        color:white;
        text-decoration:none;
        margin:5px 15px;
        font-weight:600;
        padding:6px 12px;
        border-radius:20px;
        transition:0.3s;
    }

    nav a:hover{
        background:#ffd700;
        color:#8b0000;
    }

    nav a.active{
        background:#ffd700;
        color:#8b0000;
    }

    /* INTRO */
    .intro{
        padding:70px 20px;
        text-align:center;
        max-width:900px;
        margin:auto;
    }

    .intro h2{
        color:#b30000;
        font-size:30px;
        margin-bottom:25px;
        position:relative;
    }

    .intro h2::after{
        content:"";
        width:80px;
        height:3px;
        background:#ffd700;
        display:block;
        margin:10px auto;
    }

    .intro p{
        font-size:18px;
        line-height:1.8;
        margin-bottom:15px;
    }

    /* CARDS */
    .cards{
        display:flex;
        justify-content:center;
        flex-wrap:wrap;
        gap:40px;
        padding:60px 20px;
    }

    .card{
        background:white;
        width:320px;
        border-radius:20px;
        overflow:hidden;
        box-shadow:0 10px 25px rgba(0,0,0,0.1);
        transition:0.4s;
    }

    .card:hover{
        transform:translateY(-10px);
        box-shadow:0 15px 30px rgba(0,0,0,0.2);
    }

    .card img{
        width: 100%;
        height:200px;
        object-fit:cover;
       display: block;

    }

    .card h3{
        margin:20px 0 10px;
        color:#b30000;
        font-size:20px;
    }

    .card button{
        background:linear-gradient(to right,#ffcc00,#ff9900);
        border:none;
        padding:10px 25px;
        border-radius:30px;
        margin-bottom:25px;
        font-weight:bold;
        cursor:pointer;
        transition:0.3s;
    }

    .card button:hover{
        background:linear-gradient(to right,#ff9900,#ff6600);
        color:white;
    }

    /* FOOTER */
    footer{
        background:#b30000;
        color:white;
        text-align:center;
        padding:25px;
        font-size:17px;
        margin-top:40px;
    }

    /* RESPONSIVE */
    @media(max-width:768px){
        .hero h1{
            font-size:34px;
        }

        .cards{
            flex-direction:column;
            align-items:center;
        }
    }
    img{
    max-width: 100%;
    height: auto;
    display: block;
}

.cards{
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
}

.card{
    width: 320px;
}


</style>

