body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 20px;
}

h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background-color: #007bff;
    margin: 10px auto;
}

.container {
    display: flex;
    justify-content: space-around;
    text-align: left;
    margin: 0 auto;
    max-width: 1000px;
}

.section {
    flex: 1;
    margin: 0 10px;
}

.section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.section ul {
    list-style: none;
    padding: 0;
}

.section ul li {
    margin-bottom: 10px;
}

.section ul li a {
    color: #007bff;
    text-decoration: none;
}

.section ul li a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .section {
        margin-bottom: 20px;
    }
}





body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    margin: 0;
    padding: 20px;
}

h2 {
    text-align: left;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.resources {
    display: flex;
    justify-content: space-between;
    max-width: 1000px;
    margin: 0 auto;
}

.column {
    flex: 1;
    margin: 0 15px;
}

.column h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.column ul {
    list-style: none;
    padding: 0;
}

.column ul li {
    margin-bottom: 10px;
}

.column ul li a {
    color: #007bff;
    text-decoration: none;
}

.column ul li a:hover {
    text-decoration: underline;
}

.greyed-out {
    color: #ccc;
    font-weight: 600;
}

@media (max-width: 768px) {
    .resources {
        flex-direction: column;
        align-items: center;
    }

    .column {
        margin-bottom: 20px;
        text-align: center;
    }
}