/* Style the header and navigation */
header {
    background-color: transparent;
    color: #fff;
    padding: 10px 0;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 100;
    transition: background-color 0.3s;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
}
/* Style the header placeholder */
#header-placeholder {
    height: 80px; /* Adjust the height to match your header's height */
}
/* Style the header when sticky */
header.sticky {
    background-color:  #2B32B2; /* Set your desired background color */
    transition: background-color 0.3s;
    position: fixed; /* Ensure the header remains fixed */
    top: 0; /* Keep the header at the top of the viewport */
    width: 100%; /* Occupy the full width */
}

header h1 {
    font-size: 36px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav li {
    margin-right: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}
.logo img {
    max-height: 25px;
    z-index: 1;
    /* box-shadow: #000000; */
}

/* Apply a radial gradient to the body */
body {
    background: radial-gradient(circle, #1387CC, #2B32B2);
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding-top: 100px; /* Adjust this value as needed */
}

/* Set a maximum width for the content container */
main {
    max-width: 700px; /* Adjust the max-width as needed */
    /* width: 100%; */
}

/* Style the main content */
main {
    background-color: rgba(255, 255, 255, 0.9);
    /* padding: 60px; */
    padding-top: 30px;
    padding-bottom: 20px;
    padding-left: 60px;
    padding-right: 60px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    text-align: left;
    margin: 0 auto; /* Center the container horizontally */
}

/* Increase vertical spacing between sections */
section {
    margin-bottom: 40px; /* Increase the margin to add more vertical spacing */
}

/* Style the headings */
h1 {
    text-align: center;
    font-size: 40px;
    color: #333;
    margin-bottom: 60px;
}

h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px; /* Increase margin for spacing */
}

/* Style the paragraphs */
p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px; /* Increase margin for spacing */
    line-height: 35px;
}

/* Style the links */
a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Media query for screens smaller than 768px (typical mobile screens) */
@media (max-width: 768px) {
    body {
        
        margin: 20px;
        /* padding-top: 80px; */
    }
    main {
        padding: 30px; 
        /* Reduce padding for smaller screens */
    }
    
    h1 {
        font-size: 28px; /* Decrease font size for headings on smaller screens */
    }
    
    h2 {
        font-size: 20px; /* Decrease font size for headings on smaller screens */
    }
    
    p {
        font-size: 16px; /* Decrease font size for paragraphs on smaller screens */
    }
}