/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Container Styles */
.resources {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

/* Resource Section Styles */
.resource {
    margin-bottom: 30px;
}

h2 {
    font-size: 1.5em;
    color: #0044cc;
    margin-bottom: 10px;
}

p {
    font-size: 1em;
    color: #666;
    margin-bottom: 10px;
}

/* Unordered List Styles */
ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin: 8px 0;
}

/* Download Button Styles */
.download-button {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    font-size: 1em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #0056b3;
}

.download-button:active {
    background-color: #003f7f;
}

/* Nested Lists */
ul ul {
    margin-left: 20px;
}

ul ul li {
    margin: 5px 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .resources {
        width: 95%;
    }

    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.3em;
    }

    .download-button {
        padding: 8px 16px;
        font-size: 0.9em;
    }
}
