body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.headerbanner {
    font-size: 28px;
    text-align: center;
    margin-bottom: 20px;
    color: #343a40;
}

/* Flex Container for Cultural and Sponsors Sections */
.cultural,
.sponsors {
    display: flex; /* Flexbox for horizontal alignment */
    justify-content: space-between; /* Space between the form and contact details */
    align-items: flex-start; /* Align items to the top */
    padding: 20px;
    max-width: 1200px;
    margin: 40px auto;
}

/* Form Container */
.form-container,
.sponsors-form-container,
.volunteer-form-container {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 40px; /* Increased padding for a more spacious form */
    max-width: 700px; /* Reduced width to ensure it doesn’t take up too much space */
    width: 100%; /* Full width */
}

/* Form Fields */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
input[type="file"],
select {
    width: 100%;
    padding: 12px; /* Slightly increased padding for a better user experience */
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

input[type="submit"] {
    background-color: #EA1919;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 14px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    width: 100%;
}

input[type="submit"]:hover {
    background-color: #D61818;
}

/* Contact Details */
.contactdetails {
    width: 30%; /* Adjust this width as needed */
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-left: 20px; /* Spacing between form and contact details */
}

.contactdetails h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contactdetails a {
    font-size: 16px;
    text-decoration: none;
    color: #000;
}

.contactdetails a:hover {
    color: #EA1919;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .cultural,
    .sponsors {
        flex-direction: column; /* Stack elements vertically on small screens */
        align-items: center;
    }

    .contactdetails {
        width: 100%; /* Full width on mobile */
        margin-left: 0;
        margin-top: 20px;
    }
}
