/* Global Styles */
body {
    font-family: 'Futura', Arial, sans-serif;
    background: url(../pics/bg.jpg) no-repeat fixed center center;
    background-size: cover;
    margin: 0;
    padding: 60px 0 60px 0; /* Ensure content is not hidden behind fixed navbar and footer */
    position: relative;
}

/* Overlay Gradient */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, #FFFFFF, #FE5102);
    opacity: 0.8;
    z-index: -1;
}

/* Container */
.container {
    background-color: #E5DFD1;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 20px;
    width: 90%;
    max-width: 1024px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    position: relative;
}

/* Content Sections */
.content-section {
    background-color: #F9F9F9;
    padding: 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.content-section:nth-child(odd) {
    background-color: #E5DFD1;
    border-radius: 0px;
    box-shadow: none;
}

/* Centered Content */
.content-container {
    display: block;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

/* Center Container */
.center-container {
    text-align: center; /* Center-align the content inside the container */
    margin: 0 auto; /* Center the container horizontally */
    display: flex; /* Use flexbox to center items */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Center items horizontally */
}

/* Center Image */
.center-image {
    width: 100%; /* Ensure the image is responsive */
    height: auto;
    max-width: 600px; /* Limit the maximum width */
    min-width: 300px; /* Ensure the minimum width */
    display: block;
    margin: 0 auto; /* Center the image horizontally */
}

/* Responsive Styles for Mobile */
@media (max-width: 768px) {
    .center-image {
        width: 80%; /* Reduce width for smaller screens */
        max-width: 300px;
    }
}


/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #FE5102;
    text-align: center;
    margin: 0;
}

h1 { font-size: 1.25em; font-weight: 500; margin-bottom: 12px; color: #000; }
h2 { font-size: 2em; font-weight: 700; margin-bottom: 18px; }
h3 { font-size: 1.75em; font-weight: 600; margin-bottom: 16px; margin-top: 16px;}
h4 { font-size: 1.5em; font-weight: 600; margin-bottom: 14px; margin-top: 14px; }
h5 { font-size: 1.25em; font-weight: 600; margin-bottom: 12px; margin-top: 14px; }

/* Special Heading */
h6 {
    font-family: 'Amatic SC', cursive;
    font-size: 3.5em;
    font-weight: 800;
    line-height: 1.2;
    color: #FE5102;
    margin-bottom: 20px;
}

/* ASF Button */
.asfbutton {
    font-family: 'Amatic SC', cursive; /* Added Amatic SC font */
    background-color: #FE5102; /* ASF Button color */
    color: #FFFFFF;
    font-weight: bold; /* Bold text */
    padding: 10px 20px;
    font-size: 1.5em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.asfbutton:hover {
    background-color: #AF1515; /* ASF Button hover color */
}

/* WhatsApp Button */
.wabutton {
    font-family: 'Amatic SC', cursive; /* Added Amatic SC font */
    background-color: #25D366; /* WhatsApp green */
    color: #FFFFFF;
    font-weight: bold; /* Bold text */
    padding: 10px 20px;
    font-size: 1.5em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.wabutton:hover {
    background-color: #128C7E; /* Darker WhatsApp green on hover */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .wabutton {
        font-size: 18px; /* Adjust button font size for smaller screens */
    }
}
/* Container for Group Sections */
.group-section {
    display: flex;
    flex-wrap: wrap; /* Allows items to wrap to the next line */
    justify-content: center; /* Center items horizontally */
    gap: 20px; /* Space between items */
    margin-top: 10px; /* Space above the section */
    margin-bottom: 30px;
}

/* Individual Group Item */
.group-item {
    background-color: #F9F9F9;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 250px; /* Set a fixed width for each item */
    box-sizing: border-box; /* Include padding and border in width */
}

/* Group Logo */
.group-logo {
    width: 100px; /* Adjust the size as needed */
    height: auto;
    margin-bottom: 10px;
}

/* Group Item Text */
.group-item span {
    display: block;
    margin-bottom: 10px;
    font-size: 1em;
    color: #333;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .group-section {
        flex-direction: column; /* Stack items vertically on smaller screens */
        align-items: center; /* Center items horizontally in column view */
    }
}

/* Submission Section */
.suggest-section {
    text-align: center;
    margin-top: 20px;
}

ul, ol {
    list-style: none; /* Remove bullet points and numbers */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    margin-bottom: 20px;
}