/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: black;
    overflow-x: hidden;
    background-color: #f8f9fa;
}

.container {
    text-align: center;
}
.contact-us {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 15px auto;
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    color: black !important;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

input, textarea {
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
}

textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-button {
    padding: 1rem 2rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-button:hover {
    background: #217dbb;
}

/* Contact Info */
.contact-info {
    display: grid;
    gap: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    color: black;
    margin-bottom: 1rem;
}

.info-card p {
    color: #333;
}

.info-card a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #4CAF50;
}

.info-card a i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.info-card hr {
    margin: 0;
    border: none;
    border-top: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-hero p {
        font-size: 1.2rem;
    }

    .footer-logo p {
        color: black;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .footer-logo p {
        color: black;
        font-size: 1.1rem;
    }
}

.footer-logo img {
    max-width: 200px;
    margin-bottom: 20px;
}
