.contact-section {
    padding: 60px 15px;
}

.container {
    width: 100%;
    margin: auto;
}

.section-header {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 32px;
    color: #1d1d1f;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 16px;
    color: #6b7280;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    margin-bottom: 20px;
    background: #ffffff;
    border: 2px dashed #3f3a32;
    border-radius: 14px;
}

.contact-card .icon {
    width: 55px;
    height: 55px;
    background: #eef2ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3f3a32;
    font-size: 24px;
}

.contact-card .content h3 {
    font-size: 20px;
    color: #111827;
    margin-bottom: 6px;
}

.contact-card .content p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
}

.contact-card .content a {
    color: #3f3a32;
    text-decoration: none;
    font-weight: 500;
}

.contact-card .content a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
    .contact-card {
        flex-direction: column;
        align-items: flex-start;
    }
}