/* Reset some default styles */
body, figure, h1, h2, h3, p {
    margin: 0;
}

body {
    font-family: 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

header {
    background-color: #000F5B;
    padding: 10px 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-section h1 {
    margin: 0;
}

.right-section {
    display: flex;
}

.right-section a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
}

/* Add any additional styles related to the navigation bar here */

/* Media Query for Responsive Header */
@media screen and (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .right-section {
        margin-top: 20px;
        display: flex;
        flex-direction: column; /* Display right section items in column */
        align-items: flex-start; /* Align items to the left */
    }

    .right-section a {
        display: inline-block; /* Display links inline */
        margin: 0 10px 10px 0; /* Add space between links */
    }
}

/* Footer Styles */
.footer {
    background-color: #000F5B; /* Background color */
    color: #fff; /* Text color */
    padding: 10px 0; /* Padding top/bottom */
    position: fixed; /* Fix footer to the bottom of the window */
    width: 100%;
    bottom: 0;
}
  
.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px; /* Max width for footer content */
    margin: 0 auto; /* Center content */
    padding: 0 20px; /* Add padding to align with header */
}
  
.left-content, .right-content {
    flex-grow: 1; /* Take up as much space as possible */
}
  
.right-content {
    text-align: right; /* Align content to the right */
}
  
.footer a {
    color: #fff; /* Link color */
    text-decoration: none; /* Remove link underline */
}

/* Arrow Styles */
.arrow {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}
