.contact-container {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 2rem;
}

.contact-card {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    text-align: center;
    width: 500px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.contact-card .icon {
    margin-bottom: 1.5rem;
    width: 50px;
    height: 50px;
}

.contact-card h3 {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
    font-weight: 700;
}

.contact-card p {
    margin: 0;
    line-height: 2;
}

@media (max-width: 768px) {
    .contact-container {
        gap: 1.5rem;
        padding: 1rem;
    }

    .contact-card {
        width: 100%;
    }
}

.detail-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1.5;
}

.detail-line svg {
    height: 25px;
}

.detail-line span {
    font-size: 1.125rem;
    color: #646f90;
    margin: 0;
}

.inline-icon {
    width: 16px;
    height: 16px;
}