.contact-section {
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

.contact-container {
    max-width: 600px;
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-title {
    font-size: 42px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.contact-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: rgba(148, 121, 104, 0.05);
    border-radius: 8px;
    border-left: 3px solid #947968;
    transition: all 0.3s ease;
}

.info-card:hover {
    background-color: rgba(148, 121, 104, 0.1);
    transform: translateX(5px);
}

.icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: #947968;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.card-content {
    flex: 1;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.card-content p,
.card-content a {
    font-size: 15px;
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.card-content a:hover {
    color: #947968;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    padding: 6px 15px;
    background-color: white;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #947968;
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-description {
        font-size: 15px;
    }

    .info-card {
        padding: 20px;
    }

    .icon-wrapper {
        width: 45px;
        height: 45px;
    }

    .card-content h3 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 26px;
    }

    .info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .social-links {
        flex-direction: column;
        width: 100%;
    }

    .social-links a {
        width: 100%;
        text-align: center;
    }
}