/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
}

/* Contact Section Container */
.causes-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
}

/* Contact Box Styling */
.cause-box {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 320px;
    max-width: 500px;
    text-align: center;
    transition: 0.3s ease-in-out;
}

.cause-box:hover {
    transform: translateY(-5px);
}

/* Contact Icons */
.cause-icon svg {
    width: 50px;
    height: 50px;
    color: #ff5722;
    margin-bottom: 15px;
}

/* Contact Content */
.cause-content h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ff5722;
}

.cause-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* Contact Buttons */
.contact-buttons {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.contact-buttons a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.call-btn {
    background: #ff5722;
    color: white;
}

.contact-buttons a:hover {
    opacity: 0.8;
}

/* Google Map */
.cause-content iframe {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .causes-container {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }
    .cause-box {
        background: #fff;
        padding: 5px;
    }
}
