
        :root {
            --education-primary: var(--primary-color);
            --education-secondary: var(--accent-color);
            --education-accent: var(--washi-green);
            --education-text: var(--text-color);
            --education-light: var(--light-bg);
            --education-dark: var(--dark-bg);
        }
        
        .page-banner {
            background: linear-gradient(135deg, var(--education-primary) 0%, var(--education-secondary) 100%);
            padding: 5rem 0;
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .education-card {
            border: none;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border-radius: 16px;
            overflow: hidden;
            background-color: #fff;
            margin-bottom: 2.5rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        
        .education-img-container {
            height: 240px;
            overflow: hidden;
            position: relative;
        }
        
        .education-img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .education-card:hover .education-img {
            transform: scale(1.05);
        }
        
        .education-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
            color: white;
        }
        
        .education-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--education-accent);
        }
        
        .btn-education {
            background-color: var(--education-accent);
            border-color: var(--education-accent);
            color: white;
        }
        
        .btn-education:hover {
            background-color: var(--education-accent);
            filter: brightness(110%);
            border-color: var(--education-accent);
        }
        
        .feature-box {
            padding: 2rem;
            border-radius: 16px;
            background-color: white;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        }
    

