
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styling for the body */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    color: #333;
}

/* Styling for the header */
.header {
    background-color: #0033a0; 
    color: #fff; 
    padding: 10px 0;
    text-align: center;
}

.header-title {
    margin: 0;
}

/* Styling for the home button */
.home-button {
    position: absolute; 
    top: 10px;
    right: 20px; 
    display: flex;
    align-items: center;
}

.home-image {
    width: 40px; 
    height: auto;
    border: none;
    vertical-align: middle;
}

/* Styling for the main content */
.main-content {
    padding: 20px;
}

/* Styling for section headers */
.section-title {
    color: #0033a0; 
    border-bottom: 2px solid #0033a0;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

/* Styling for subsection headers */
.subsection-title {
    color: #0033a0; 
    margin-bottom: 10px;
}

/* Styling for links */
.link {
    color: #0033a0; 
    text-decoration: none;
}

.link:hover {
    color: #a020f0; 
    text-decoration: underline;
}

/* Styling for lists */
.resource-list {
    list-style-type: none;
    padding: 0;
}

.resource-list li {
    margin-bottom: 10px;
}

/* Styling for the footer */
.footer {
    background-color: #0033a0; 
    color: #fff; 
    text-align: center;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.footer-text {
    margin: 0;
}
