/* Resources Page CSS */
.resources-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.resources-section h1 {
    font-size: 2.5em;
    color: #003bb3;
    margin-bottom: 10px;
}

.resources-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #555;
}

.resource-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.resource-link {
    display: inline-block;
    text-decoration: none;
    padding: 15px 25px;
    background-color: #003bb3;
    color: #fff;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.resource-link:hover {
    background-color: #0056e0;
    transform: scale(1.05);
}

/* Resources Section */
.resources-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.resources-section h1 {
    font-size: 2.5em;
    color: #003bb3;
    margin-bottom: 20px;
}

.resources-section p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #555;
}

.resource-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.resource-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: left;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-card h2 {
    font-size: 1.5em;
    color: #003bb3;
    margin-bottom: 10px;
}

.resource-card p {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

.resource-card .card-link {
    display: inline-block;
    font-size: 1em;
    color: #fff;
    background-color: #d01a5f;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.resource-card .card-link:hover {
    background-color: #b01550;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
}

/* Improved Bubble Styling for Fixes Sections */
.article-section {
    background: #f9f9f9;
    padding: 40px 20px;
    margin: 20px auto;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.article-section article {
    color: #333;
    font-family: Arial, sans-serif;
    line-height: 1.8;
}

.article-section h2 {
    color: #1565c0;
    font-size: 2em;
    margin-bottom: 15px;
    text-align: center;
}

.article-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.article-section ol {
    margin: 20px 0;
    padding-left: 20px;
    list-style-type: decimal;
}

.article-section li {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.article-section li strong {
    color: #003bb3;
    font-weight: bold;
}

.article-section a {
    color: #1565c0;
    text-decoration: underline;
}

.article-section a:hover {
    color: #003bb3;
}

