body{
    font-family:Arial,Helvetica,sans-serif;
    line-height:1.7;
    color:#444;
}

.hero{
    background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    url("../images/banner.jpg") center/cover no-repeat;
    color:#fff;
    padding:120px 0;
}

.hero h1{
    font-weight:700;
}

.section-title{
    color:#0f5132;
    font-weight:700;
    margin-bottom:25px;
}

.card{
    transition:.3s;
    border-radius:12px;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.journal{
    background:#d8f5e7;
}

.journal-box{
    background:#fff;
    padding:25px;
    border-radius:10px;
    height:100%;
    transition:.3s;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.journal-box:hover{
    transform:translateY(-8px);
}

.journal-box a{
    text-decoration:none;
    font-weight:bold;
    color:#198754;
}

footer{
    background:#0f5132;
    color:#fff;
    padding:30px 0;
}

@media(max-width:768px){

.hero{
padding:80px 20px;
}

.hero h1{
font-size:2rem;
}

.section-title{
text-align:center;
}

}