html {
    overflow-y: scroll; /* Ensures scrollbar is always visible */
}

/* Global styling for smooth fonts and a light, clean background */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f0f4f8;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: flex-start;  /* Aligns the content at the top */
}

header {
    background-color: #333;
    color: white;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Align items vertically */
    margin: 0;
}

/* Container for the content inside the header */
.header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Stack the title and learn more link */
    text-align: center;
    width: 100%;
}

/* Add box-sizing for consistency */
*,
*::before,
*::after {
    box-sizing: border-box;
}


/* Title styling */
.header-title {
    font-size: 2rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 10px; /* Space between title and learn more link */
    width: 100%;
    padding: 5px 10px;
}

.header-title:hover{
    color: #0080b3;
    font-weight: bold; /* Explicitly set to avoid layout shifts */
    transition: all 0.3s ease;
}

/* Learn more link styling */
.learn-more-link {
    font-size: 1.2rem;
    text-decoration: none;
    color: white;
}

.learn-more-link:hover {
    color: #0080b3;
    transition: all 0.3s ease;
}


/* Link underline effect */
.learn-more-content a {
    position: relative;
    color: #4A90E2;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
}

.learn-more-content a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #4A90E2;
    transition: width 0.3s;
}

.learn-more-content a:hover::after {
    width: 100%;
}


/* Main content container */
main {
    width: 100%;
    padding: 20px;
    margin-left: auto   ;
    background: #f0f4f8;
}

/* Headings and text styling */
h1 {
    color: #333;
    font-size: 3rem;
    padding-bottom: 10px;
    margin-bottom: 20px;
    justify-content: center;
    text-align: center;
    
}

h2 {
    color: #333;
    font-size: 2rem;
    border-bottom: 2px solid #4a90e2;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

h3 {
    font-size: 1.3rem;
    color: #4a90e2;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
}

/* Modern bullet points styling */
ul {
    list-style: none; /* Remove default bullet points */
    padding-left: 0;
    margin-bottom: 20px;
}

li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #555;
}

/* Custom bullet point circle */
li::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #4a90e2; /* Modern blue color */
    border-radius: 50%; /* Circular shape */
    margin-right: 15px; /* Space between bullet and text */
}

/* Hover effect for list items */
li:hover {
    color: #333; /* Darker text color on hover */
}


    