    /* Page-specific styles */
        .student-hero {
            background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
            padding: 6rem 0 4rem;
        }

        .student-hero h1 {
            font-size: 3.5rem;
            color: var(--dark-orange);
            margin-bottom: 1rem;
        }

        .student-hero .subtitle {
            font-size: 1.5rem;
            color: var(--text-dark);
            margin-bottom: 2rem;
        }

        .student-hero p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .resource-card {
            background: var(--white);
            padding: 2.5rem;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border-top: 4px solid var(--accent-orange);
        }

        .resource-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 30px rgba(255, 107, 53, 0.2);
        }

        .resource-card h3 {
            font-size: 1.8rem;
            color: var(--dark-orange);
            margin-bottom: 1rem;
        }

        .resource-card p {
            color: var(--text-dark);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .resource-card ul {
            list-style: none;
            padding: 0;
            margin-bottom: 1.5rem;
        }

        .resource-card li {
            padding: 0.5rem 0;
            color: var(--text-dark);
        }

        .resource-card li::before {
            content: '✓';
            color: var(--primary-orange);
            font-weight: bold;
            margin-right: 0.75rem;
            font-size: 1.2rem;
        }

        .icon-box {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }

        .cta-box {
            background: linear-gradient(135deg, var(--primary-orange), var(--dark-orange));
            color: var(--white);
            padding: 3rem;
            border-radius: 8px;
            text-align: center;
            margin-top: 3rem;
        }

        .cta-box h3 {
            color: var(--white);
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .cta-box p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }

        .btn-white {
            background: var(--white);
            color: var(--primary-orange);
            font-weight: 600;
        }

        .btn-white:hover {
            background: var(--light-gray);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.2);
        }

        @media (max-width: 768px) {
            .student-hero h1 {
                font-size: 2.5rem;
            }

            .student-hero .subtitle {
                font-size: 1.2rem;
            }

            .resources-grid {
                grid-template-columns: 1fr;
            }
        }
