* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    background: transparent;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.education-section {
    background: rgba(25, 25, 35, 0.2);
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.education-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.education-item {
    padding: 1.2rem;
    background: rgba(25, 25, 35, 0.1);
    border-radius: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.education-section h1 {
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.education-item h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.education-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

@media screen and (max-width: 1200px) {
    .container {
        padding-left: 0;
        max-width: 95%;
        margin-top: 2rem;
    }
}

@media screen and (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .education-section {
        padding: 2rem;
    }
    
    .education-section h1 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 768px) {
    .container {
        padding: 0 1rem;
        margin-top: 1rem;
    }
    
    .education-section {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 576px) {
    .education-section {
        padding: 1rem;
    }
    
    .education-item {
        padding: 1rem;
    }
}