
/* =========================================
   Contact Section
   ========================================= */
.contact {
    background-color: var(--white);
    text-align: center;
}

.contact__box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    background: #fff;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    max-width: 900px;
    margin: 0 auto;
}

.contact__phone {
    display: flex;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
}

.contact__phone img {
    align-self: center;
    margin-right: 10px;
    height: 20px;
    width: auto;
}

.contact__email {
    display: flex;
    font-size: 1.2rem;
    font-weight: 500;
}
.contact__email img {
    align-self: center;
    margin-right: 10px;
    height: 20px;
    width: auto;
}

@media (max-width: 768px) {
    .contact__box {
        flex-direction: column;
        gap: 20px;
    }
}