.contact-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    margin-top: 2rem;
    width: 100%;
    padding: 0 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white; /* Assuming dark theme based on site aesthetic */
    transition: transform 0.3s ease, color 0.3s ease;
    padding: 1rem;
    border-radius: 8px;
    /* border: 1px solid rgba(255, 255, 255, 0.1); Optional border */
}

.contact-item:hover {
    transform: translateY(-5px);
    color: #e0ac00; /* Goldish hover color to match brand */
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.5rem;
    /* fill: currentColor; Removed to allow branding colors */
}

.contact-text {
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif; /* Match site font */
    letter-spacing: 0.5px;
    color: #fff;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
    }

    .contact-item {
        width: 100%;
        flex-direction: row;
        justify-content: left;
        gap: 1rem;
        padding: .5rem;
    }
    
    .contact-icon {
        width: 2rem;
        height: 2rem;
        margin-bottom: 0;
    }
}
