/* 연락처 섹션 */
.info-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.info-card h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.info-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.info-card a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #4f46e5;
}