/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* BODY */
body{
    font-family:'Segoe UI',sans-serif;
    background:linear-gradient(135deg,#eef2f7,#dfe9f3);
}

/* CONTAINER */
.container{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:80vh;
    padding:20px;
}

/* CARD */
.contact-card{
    background:white;
    padding:35px;
    border-radius:20px;
    width:100%;
    max-width:500px;

    box-shadow:0 15px 40px rgba(0,0,0,0.15);

    text-align:center;

    animation:fadeUp 0.5s ease;
}

/* TITRE */
.contact-card h2{
    margin-bottom:10px;
    color:#2c3e50;
}

/* SUBTITLE */
.subtitle{
    margin-bottom:25px;
    color:#777;
}

/* ITEM */
.contact-item{
    display:flex;
    align-items:center;
    gap:15px;

    padding:15px;
    margin-bottom:15px;

    border-radius:12px;

    background:#f9fbff;

    transition:0.3s;
}

/* HOVER */
.contact-item:hover{
    transform:translateY(-3px);
    background:#eef7ee;
}

/* ICON */
.contact-item i{
    font-size:20px;
    color:#4CAF50;
    min-width:30px;
}

/* TEXT */
.contact-item span{
    display:block;
    font-size:13px;
    color:#888;
}

.contact-item a{
    color:#2c3e50;
    text-decoration:none;
    font-weight:bold;
}

.contact-item a:hover{
    color:#4CAF50;
}

/* ANIMATION */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width:600px){

    .contact-card{
        padding:25px;
    }

    .contact-item{
        flex-direction:row;
        align-items:flex-start;
    }
}