/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #8d0606de;
    color: #333;
}

/* Page Wrapper to Keep Everything Centered */
.page-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header Styling */
header {
    background: #8d0606de;
    color: white;
    text-align: center;
    padding: 20px;
    width: 100%;
}

/* Consistent Box for All Content Sections */
.content-box {
    max-width: 800px;
    width: 100%;
    background: white;
    padding: 20px;
    margin: 20px 0;
    border-radius: 5px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Video Section */
.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.video-container iframe {
    max-width: 100%;
    width: 800px;
    height: 450px;
}

/* Registration Form */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}
form label {
    margin-top: 10px;
    font-weight: bold;
}
form input[type="text"],
form input[type="email"],
form input[type="tel"] {
    padding: 10px;
    width: 100%;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
form input[type="submit"] {
    margin-top: 20px;
    padding: 10px;
    background-color: #8d0606de;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
form input[type="submit"]:hover {
    background-color: #740404;
}

/* Ticket Link */
.ticket-link {
    margin-top: 20px;
}
.ticket-link a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}
.ticket-link a:hover {
    text-decoration: underline;
}

/* Centering the Image */
.content-box img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: auto;
}

/* Ensure mobile responsiveness */
.container {
    width: 90%;
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

/* Make form inputs readable on mobile */
form input[type="text"],
form input[type="email"],
form input[type="tel"] {
    padding: 10px;
    width: 100%;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white; /* Ensures text is visible */
    color: black; /* Black text inside inputs */
}

/* Fix button colors */
form input[type="submit"] {
    background-color: #8d0606;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}
/* New Section Styling */
.content-box ul {
    list-style-type: none;
    padding: 0;
}

.content-box ul li {
    font-size: 16px;
    margin: 5px 0;
}

/* Scholarship Box Styling */
.scholarship-box {
    background-color: #f9f9f9;
    border-left: 5px solid #8d0606;
    padding: 15px;
    text-align: left;
}

/* Ticket Pricing Box */
.ticket-pricing {
    background-color: #fff8e1;
    border-left: 5px solid #ff9800;
    padding: 15px;
}

/* Checkbox Styling */
input[type="checkbox"] {
    margin-right: 5px;
}

/* Community Commitment Box Styling */
.community-commitment,
.scholarship-box {
    border-radius: 5px;  /* Rounded corners */
    padding: 20px;
    background: white;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); /* Matching shadow effect */
}

footer {
    color: white;
    text-align: center;
    padding: 10px;
}
footer a {
    color: white;
    text-decoration:none
}
