/* General Page Header */
.page-header {
    background-color: #937b1dff; /* Use your brand's primary color */
    text-align: center;
    padding: 6rem 2rem 2rem;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #ffffff; /* Use your brand's primary color */
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #f8f8f8;
    max-width: 600px;
    margin: 0 auto;
}

/* Resource Categories Grid */
#resource-categories {
    padding: 4rem 2rem;
    background-color: #f8f8f8;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

.resource-item {
    text-decoration: none;
    background: #d3d3d3;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333;
}

.resource-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.resource-item img {
    width: 60px;
    height: auto;
    margin-bottom: 1rem;
}

.resource-item h3 {
    color: #000080; /* Use your brand's accent color */
    margin-bottom: 0.5rem;

}

.resource-item p {
    color: #666;
    font-size: 0.9rem;

}