  .header1 {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }
        
        .title1{
            color: #1a73e8;
            font-size: 24px;
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        .section-title {
            background-color: #f5f5f5;
            padding: 8px 15px;
            margin: 25px 0 15px;
            font-size: 18px;
            border-left: 4px solid #1a73e8;
            font-weight: bold;
        }
        
        .sub-title {
            margin: 20px 0 10px;
            font-size: 16px;
            font-weight: bold;
        }
        
        .text {
            margin-bottom: 15px;
            text-align: justify;
        }
        
        ul {
            margin-bottom: 20px;
            padding-left: 20px;
        }
        
        li {
            margin-bottom: 8px;
        }
        
        .note {
            font-style: italic;
            color: #666;
            margin-top: 10px;
        }
        
        .program-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 10px;
            margin-bottom: 20px;
        }
        
        .program-item {
            background-color: #f9f9f9;
            padding: 10px;
            border-radius: 4px;
        }
        
        .tuition-info {
            margin-bottom: 20px;
        }
        
        .tuition-item {
            margin-bottom: 15px;
        }
        
        .tuition-title {
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .footer1 {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #eee;
            text-align: center;
            font-size: 14px;
            color: #666;
        }
        
        @media (max-width: 768px) {
            .program-list {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
        }