        .hhheader {
            text-align: center;
            padding: 30px 20px;
            color: white;
            animation: fadeInDown 1s ease;
			overflow:hidded;
        }
        
        .hhheader h1 {
            font-size: .4rem;
            margin-bottom: 10px;
            text-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        
        .hhheader p {
            font-size: .28rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .education-levels {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px;
            margin-top: 20px;
        }
        
        .level-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            overflow: hidden;
            width: 100%;
            max-width:96%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: fadeInUp 0.8s ease;
        }
        
        .level-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }
        
        .card-header {
            padding: 20px;
            color: white;
            display: flex;
            align-items: center;
        }
        
        .card-header i {
            font-size: .4rem;
            margin-right: 15px;
        }

        .card-header h2 {
            font-size: .36rem;
            font-weight: 600;
        }
        
        .bachelor .card-header { background: linear-gradient(135deg, #ff6b6b, #ff8e53); }
        .master .card-header { background: linear-gradient(135deg, #4facfe, #00f2fe); }
        .doctor .card-header { background: linear-gradient(135deg, #42e695, #3bb2b8); }
        
        .card-content {
            padding: 20px;
        }
        
        .university {
            margin-bottom: 25px;
            border-bottom: 1px dashed #eee;
            padding-bottom: 20px;
        }
        
        .university:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .university h3 {
            color: #2c3e50;
            margin-bottom: 12px;
            font-size: .24rem;
            display: flex;
            align-items: center;
        }
        
        .university h3 i {
            margin-right: 8px;
            color: #3498db;
        }
        
        .program {
            background: #f9f9ff;
            border-radius: 8px;
            padding: 15px;
            margin-bottom: 15px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .program:last-child {
            margin-bottom: 0;
        }
        
        .program-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }
        
        .program h4 {
            color: #e74c3c;
            font-size: .2rem;
            margin: 0;
        }
        
        .program p {
            color: #555;
            margin-bottom: 0;
            font-size: 0.18rem;
        }
        
        .btn {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.2rem;
            transition: all 0.3s ease;
            text-align: center;
            background: #3498db;
            color: white;
            border: 2px solid #3498db;
            white-space: nowrap;
            margin-left: 10px;
        }
        
        .btn:hover {
            background: #2980b9;
            border-color: #2980b9;
        }
        
        footer {
            text-align: center;
            padding: 30px 0;
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
            margin-top: 40px;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .bachelor { animation-delay: 0.1s; }
        .master { animation-delay: 0.2s; }
        .doctor { animation-delay: 0.3s; }
        