/* General body styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    /* Background set to white */
    color: #333;
}

.container {
    width: 80%;
    /* Reduced width for a compact layout */
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

/* Banner styling */
.banner {
    background-color: #f9f9f9;
    /* Blue background for header */
    color: rgb(246, 171, 20);
    /* White text */
    text-align: center;
    padding: 80px 20px 40px;
    /* Extra top padding to accommodate logo */
    border-radius: 8px;
    position: relative;
    /* To position the logo */
}

.banner .logo {
    position: absolute;
    top: 20px;
    /* Position logo above the header content */
    left: 50%;
    transform: translateX(-50%);
    max-width: 210px;
    /* Adjust logo size */
    height: auto;
    background-color: none;
    /* Optional: Round the logo if needed */
    padding: 0px;
    /* Optional: Add padding around the logo */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05); 
    
}

.banner h1 {
    font-size: 2.5rem;
    margin: 20px 0 0;
    /* Space below the logo */
}

.banner p {
    font-size: 1.2rem;
    margin: 10px 0 0;
}

/* Section styling */
.content-section {
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    /* Light gray background for sections */
}

.content-section h2 {
    margin: 0 0 15px;
    font-size: 1.8rem;
    color: #007bff;
    /* Blue title font color */
}

.content-section ul {
    padding-left: 20px;
    list-style: disc;
    color: black;
    /* Pointer content font color set to black */
}

.content-section ul li {
    margin: 8px 0;
}

/* Footer styling */
footer {
    text-align: center;
    margin-top: 20px;
    padding: 20px 0;
    background-color: #f9f9f9;
    /* Blue background for footer */
    border-radius: 8px;
    color: white;
    /* White text for footer */
}

.register-link {
    color: white;
    /* White text for link */
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    background-color: #3c95f5;
    /* Slightly lighter blue for button */
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
}

.register-link:hover {
    background-color: #7986CB;
    /* Lighter blue on hover */
}