#resources-hero {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white);
    text-align: center;
    padding: 160px 5% 120px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

#resources-hero .resources-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

#resources-hero h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

#resources-content {
    background: var(--background-light);
    padding: 80px 5%;
}

.resources-container {
    max-width: 1200px;
    margin: 0 auto;
}

.resources-section {
    margin-bottom: 60px;
}

.resources-section h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 2rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.resource-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform, box-shadow;
    border-left: 5px solid var(--secondary-color);
}

.resource-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 45px rgba(0,0,0,0.12);
}

.resource-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.resource-item p {
    color: var(--text-color);
    opacity: 0.8;
}