.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* HEADER */
.hero {
    margin-top: 6pc;
}

.hero-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-content{
    flex:1;
}

.hero-subtitle{
    display:inline-block;
    text-transform:uppercase;
    letter-spacing:4px;
    color:#9b6b00;
    font-weight:bold;
    margin-bottom:15px;
}

.hero-content h1{
    font-size:52px;
    margin-bottom:25px;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    color:#d6d6d6;
}

.hero-image{
    flex:1;
}

.hero-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/* DETAIL */

.detail{
    padding:70px 0;
}

.detail-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.card{
    background:#fff8eb;
    border:1px solid #ecd9a4;
    border-radius:18px;
    padding:35px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.card h3{
    font-size:30px;
    margin-bottom:20px;
    color:#5d4200;
}

.card .content{
    line-height:1.9;
    color:#555;
}

.card .content ul{
    margin-left:20px;
}

.card .content p{
    margin-bottom:15px;
}

/* FOOTER */

.footer{
    background:#222;
    color:#fff;
    text-align:center;
    padding:60px 0;
}

.footer h3{
    font-size:30px;
    margin-bottom:15px;
}

.footer p{
    color:#bbb;
}

/* RESPONSIVE */

@media(max-width:992px){

    .hero-wrapper{
        flex-direction:column;
    }

    .hero-content h1{
        font-size:40px;
    }

    .detail-grid{
        grid-template-columns:1fr;
    }

    .hero-image img{
        height:400px;
    }

}

@media(max-width:576px){

    .hero{
        padding:50px 0;
    }

    .hero-content h1{
        font-size:32px;
    }

    .hero-content p{
        font-size:16px;
    }

    .card{
        padding:25px;
    }

    .card h3{
        font-size:24px;
    }

}