:root {
    --bg-color: #26355D;
    --primary-color: #AF47D2;
    --secondary-color: #FF8F00;
    --accent-color: #FFDB00;
}

/* Basic styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: var(--bg-color);
    max-width: 100%;
    overflow-x: hidden;
}

header {

    color: #fff;
    text-align: center;
    padding: 20px 10px;
}

header img {
    display: block;
    margin: 4px auto;
    max-height: 80px;
}

main {
    padding: 20px;
    text-align: center;
}

h1{
    font-size: 3em;
    margin-top: 1em;
    margin-bottom: 0.5em;
    color:#f59f3d;
}

p{
    font-size: 1.2em;
    margin-bottom: 4em;
    color: white;
}

.menu-icon .fas.fa-bars {
    font-size: 30px; /* Adjust the font size as needed */
    cursor: pointer;
}

.menu-icon {
    position: fixed;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1001; /* Ensures the icon is above other content */
}
.menu {
    position: fixed;
    right: -100%; /* Start offscreen */
    top: 0;
    width: 250px;
    height: 100%;
    background-color:#4A51C4;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    transition: right 0.3s ease;
    z-index: 1000; /* Below the toggle but above other content */
    padding: 20px;
    flex-direction: column; /* Align children vertically */
    align-items: center; /* Center align items horizontally */
    justify-content: center; /* Center items vertically */
}

.menu-item {
    margin: 10px 0; /* Space between menu items */
    font-size: 1.2em; /* Larger text for readability */
    color: white; /* Dark text for better contrast on white background */
}

/* Additional style for links if needed */
.menu-item a {
    color: white;
    text-decoration: none; /* Remove underline from links */
    transition: color 0.3s ease; /* Smooth color transition for hover effect */
}

.menu-item a:hover {
    text-decoration: underline; /* Darker shade on hover for better interaction feedback */
}

.menu.active {
    right: 0; /* Slide in */
}
body.active-menu {
    overflow: hidden; /* Prevent scrolling when menu is active */
}


footer {
    background-color: #393F9A;
    color: #fff;
    text-align: center;
    padding: 10px;
   
    width: 100%;
    bottom: 0;
}

.content-box {
    background-color: #7079D3; /* Light background for the content box */
    color: white; /* Dark text for readability */
    margin: 20px auto; /* Centers the box and adds spacing around it */
    padding: 20px; /* Padding inside the box */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Subtle shadow for depth */
    max-width: 800px; /* Maximum width of the content box */
    width: calc(100% - 20px);
}
.content-box h3,h2 {
   color: #f59f3d;; 
}
.content-box p{
    max-width: 750px;
    margin-left: auto; /* Centers the text blocks horizontally */
    margin-right: auto;
    line-height: 1.6;
}

/* Responsive design */
@media (max-width: 768px) {
    header img {
        max-width: 100px;
    }

    footer {
        font-size: 12px;
    }

}
@media (max-width: 600px) {
    .content-box {
        margin: 10px 30px; /* Increased side margins for small screens */
        padding: 15px;
        width: calc(100% - 60px); /* Adjust width to account for increased margins */
    }
}
@media (max-width: 480px) {
    header {
        padding: 20px 5px;
    }
    

    header img {
        max-width: 120px;
    }
}
