.container2 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
}

.contact-section {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

.contact-section:hover {
    transform: translateY(-5px);
}

.contact-section h2 {
    font-size: 28px;
    color: #222;
    margin-bottom: 20px;
    font-weight: bold;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 8px;
    color: white;
    min-width: 150px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.call-btn {
    background: #ff5733;
}

.email-btn {
    background: #3498db;
}

.website-btn {
    background: #2ecc71;
}

.map-btn {
    background: #e67e22;
}

.contact-btn:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-btn {
        width: 100%;
        max-width: 250px;
    }
}
