*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#0F0F10;
    color:#f3ebeb;
}

a{
    text-decoration:none;
}
/* Cards */

.cards{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.card{
    width:430px;
    border-radius:18px;
    overflow:hidden;
    position:relative;
}

.card img{
    width:100%;
    height:330px;
    object-fit:cover;
    display:block;
}

.card-content{
    position:absolute;
    left:20px;
    right:20px;
    bottom:20px;
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
}

.card-content h3{
    margin-bottom:10px;
}

.card-content p{
    margin:0;
    font-size:14px;
    line-height:1.6;
}
/* ===========================
   MOBILE
=========================== */

@media (max-width:768px){

    .contact-info{
        text-align:center;
    }

    .contact-info h2{
        font-size:42px;
        margin-bottom:30px;
    }

    /* Only the intro paragraph */
    .contact-info > p{
        max-width:320px;
        margin:0 auto 40px;
        line-height:1.8;
    }

    .info{
        margin-bottom:30px;
        text-align:center;
    }

    .info h4{
        margin-bottom:8px;
    }

    .info p{
        margin:0;
    }

    .info a{
        color:#fff;
        text-decoration:underline;
    }

}

#contactMessage{
    margin-top:20px;
    font-weight:500;
    min-height:24px;
}