.contact-page{
    min-height:80vh;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f5f5f5;
    padding:40px 15px;
}

.contact-box{
    max-width:450px;
    width:100%;
    background:#fff;
    border:2px solid #ddd;
    border-radius:10px;
    padding:30px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,0.1);
}

.contact-logo{
    width:80px;
    margin-bottom:15px;
}

.company-name{
    font-size:22px;
    color:#0E766B;
    margin-bottom:25px;
}

.contact-item{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:18px;
}

.contact-item img{
    width:28px;
    height:28px;
}

.contact-item span{
white-space: nowrap;
}

.contact-item a{
    text-decoration:none;
    font-weight:bold;
    color:#d40000;
}

.contact-item a:hover{
    text-decoration:underline;
}

@media (max-width:768px){

.contact-box{
    padding:20px;
}

.company-name{
    font-size:18px;
}

.contact-item span{
    font-size:15px;
}

}
.contact-item img{
    width:28px;
    height:28px;
    flex-shrink:0;
}