/* CSS cho trang Thông tin Tuyển sinh 2026 */
.enrollment-info {
    max-width: 1200px;
    margin: 30px auto;
    padding: 30px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.enroll-title {
    color: #1a5276;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 30px;
    border-bottom: 2px solid #3498db;
    padding-bottom: 15px;
}

.enroll-title h1 {
    font-size: 24px;
    margin: 10px 0;
    font-weight: 700;
}

.enrollment-main-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.method-box {
    padding: 20px;
    border: 1px solid #e0e6ed;
    border-radius: 10px;
    background: #fdfdfd;
    transition: all 0.3s ease;
}

.method-box:hover {
    box-shadow: 0 8px 25px rgba(24, 120, 231, 0.1);
    border-color: #3498db;
}

.method-name {
    color: #e60000;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.method-details {
    padding-left: 20px;
}

.method-details li {
    margin-bottom: 5px;
}

.policy-section {
    margin-top: 40px;
    background: #fff9f9;
    padding: 25px;
    border-radius: 15px;
    border: 1px dashed #ff4d4d;
}

.policy-title {
    color: #e60000;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.policy-list {
    list-style: none;
    padding: 0;
}

.policy-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.policy-icon {
    font-size: 20px;
    color: #e60000;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .enrollment-info {
        padding: 15px;
        margin: 15px;
    }

    .enroll-title h1 {
        font-size: 20px;
    }
}