/* Resources Page */
.resources-section {
    text-align: center;
    margin: 3rem auto;
    max-width: 900px;
    padding: 2rem;
}

.resources-section h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.resources-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

/* Resource Cards Layout */
.resource-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.resource-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.resource-card:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.resource-card h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.resource-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.resource-card a {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border: 2px solid #007bff;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.resource-card a:hover {
    background-color: #007bff;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .resource-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
}
