    .hero {
        background: url('https://cdn.hsystemcontent.com/images/98110.jpg') no-repeat center center;
        background-size: cover;
        height: 30vh;
        display: flex;
        align-items: center;
        justify-content: center;
     
        color: var(--seasalt);
        position: relative;
        flex-direction: column;
        text-decoration:none;
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(35, 27, 14, 0.6);
    }

    .hero-content {
        position: relative;
        z-index: 1;
    }
    .hero-content p{
        color:white;
    }

    .btn-custom {
        background-color: var(--dun);
        color: var(--smoky-black);
        border-radius: 30px;
        padding: 14px 24px;
        font-size: 20px;
        font-weight: bold;
        margin: 10px;
        display: inline-block;
    }

    .btn-custom:hover {
        background-color: var(--drab-dark-brown);
        color: var(--seasalt);
    }

    .content-section {
        padding: 60px 20px;
        text-align: center;
    }
     .card-row{
        display:flex;
        flex-direction: row;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .info-card {
        background-color: var(--dun);
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        margin-top: 20px;
        
        /*max-width: 495px;*/
    }
    @media (max-width: 768px) {
        .card-row {
            flex-direction: column; 
        }

        .info-card {
            max-width: 100%; 
            margin-bottom: 20px;
        }
        .info-card-img{
            flex-direction:column;
        }
    }