.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    align-self: center;
}

section {
    margin-bottom: 40px;
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: justify;
}

/* Center the containers inside the sections */
#project-outcomes-container,
#other-documents-container {
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Horizontally center the content */
    align-items: center; /* Vertically center the content (if needed) */
    flex-direction: column; /* Stack items vertically (optional) */
    margin: 0 auto; /* Center the container itself within the section */
    text-align: center; /* Center-align text inside the container */
    max-width: 800px; /* Optional: Limit the width of the container */
    padding: 20px; /* Optional: Add padding for spacing */
}

.resource-item {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    max-width:75%;
}

.resource-item h2 {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: left;
}

.resource-item p {
    font-size: 14px;
    color: #555;
    margin: 5px 0;
}

.resource-item a {
    color: #007bff;
    text-decoration: none;
}

.resource-item a:hover {
    text-decoration: underline;
}


.view-all-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
}

.view-all-btn:hover {
    background-color: #0056b3;
}