/* General Styles */
body {
    margin-top: 40px;
    font-family: Arial, sans-serif;
    background: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Shared Container Styles */
.contact-container, .about-container {
    background: white;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-radius: 8px;
    width: 80%;
    max-width: 600px;
}

/* Contact Info */
.contact-info p {
    font-size: 16px;
    margin: 8px 0;
}

/* Social Links */
.social-links a {
    display: inline-block;
    margin: 10px;
    padding: 8px 12px;
    text-decoration: none;
    font-weight: bold;
    color: white;
    border-radius: 5px;
}

.social-links a:nth-child(1) { background: #1877F2; } /* Facebook */
.social-links a:nth-child(2) { background: #E1306C; } /* Instagram */
.social-links a:nth-child(3) { background: #25D366; } /* WhatsApp */

.social-links a:hover {
    opacity: 0.8;
}

/* Contact Form */
input, textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Button */
button {
    background: #28a745;
    color: white;
    padding: 10px;
    border: none;
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background: #218838;
}

/* About Us Page */
.about-container h1, .about-container h2 {
    color: #333;
}

.about-container ul {
    list-style: none;
    padding: 0;
}

.about-container ul li {
    background: #e9ecef;
    padding: 8px;
    margin: 5px 0;
    border-radius: 5px;
}
