/* Contact Us Section */
.contact-us {
    padding: 50px;
    text-align: center;
    background: #fff;
}

.contact-us h2 {
    font-size: clamp(1.5rem, 4vw, 3rem); /* Responsive font size for title */
    color: #333;
    margin-bottom: 20px;
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    max-width: 400px;
    text-align: left;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #666;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    margin-bottom: 10px;
    font-size: 18px;
    color: #333;
}

.contact-form {
    max-width: 500px;
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    outline: none;
}

.form-group textarea {
    resize: none;
    height: 150px;
}

.form-group button {
    width: 100%;
    padding: 15px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-group button:hover {
    background: #555;
}

.form-group button:focus {
    outline: 2px solid #333;
    outline-offset: 2px;
}

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

    .contact-info, .contact-form {
        max-width: 100%;
    }

    .contact-info p {
        font-size: 16px;
    }

    .contact-info ul li {
        font-size: 16px;
    }

    .contact-us h2 {
        font-size: clamp(1.5rem, 5vw, 2.5rem); /* Responsive font size for mobile */
    }
}

/* Map Section */
.map-section {
    text-align: center;
    padding: 20px;
}

.map-container {
    max-width: 100%;
    margin: 0 auto;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

iframe {
    width: 100%;
    height: 500px;
    border: 0;
    border-radius: 8px;
}

@media (max-width: 768px) {
    iframe {
        height: 300px;
    }
}
.notification {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 16px;
    text-align: center;
    width: 100%;
    max-width: 600px; /* Limit the width for larger screens */
    margin-left: auto;
    margin-right: auto;
}

.notification.success {
    background-color: rgba(0, 128, 0, 0.2); /* Light transparent green */
    border: 1px solid green;
    color: green;
}

.notification.error {
    background-color: rgba(255, 0, 0, 0.2); /* Light transparent red */
    border: 1px solid red;
    color: red;
}

/* Adjust for smaller screens */
@media screen and (max-width: 768px) {
    .notification {
        font-size: 14px; /* Smaller font for tablets */
        padding: 10px;
    }
}

@media screen and (max-width: 480px) {
    .notification {
        font-size: 12px; /* Smaller font for mobile */
        padding: 8px;
    }
}
